IMetabasePasswordPolicy.RequireDifferentChars

Syntax

RequireDifferentChars: Boolean;

Description

The RequireDifferentChars property determines whether different characters must be used in a password.

Example

To execute the example, add a link to the Metabase system assembly.

Sub UserProc;
Var
    MB: IMetabase;
    MS: IMetabaseSecurity;
    MU: IMetabasePolicy;
    PassPol: IMetabasePasswordPolicy;
    Lic: Object;
Begin
    MB := MetabaseClass.Active;
    
// Check out license to work with security manager
    Lic := MB.RequestLicense(UiLicenseFeatureType.Adm);
    MS := MB.Security;
    MU := MS.Policy;
    PassPol := MU.PasswordPolicy;
    
// Prohibit the use of the same characters in password
    PassPol.RequireDifferentChars := True;
    
// Save changes
    MS.Apply;
    
// Check in license
    Lic := Null;
End Sub UserProc;

After executing the example the use of the same characters is prohibited in password.

See also:

IMetabasePasswordPolicy