Skip to main content
All docs
V25.1
  • TdxSkinIgnoredFormList.AddQualifiedClassName(string,Boolean) Method

    Adds one or more qualified form class names to the ignore list.

    Declaration

    class procedure AddQualifiedClassName(const AValue: string; AIsPartialMatch: Boolean = False);

    Parameters

    Name Type Description
    AValue string

    The qualified name of the target class (the full class name concatenated with its source unit name).

    The AValue parameter specifies the full or partial qualified class name depending on the AIsPartialMatch parameter value.

    AIsPartialMatch Boolean

    Optional. Specifies if the procedure interprets the AValue parameter value as a prefix or a full class name:

    False
    Default. The procedure adds the class whose qualified name matches the AValue parameter value.
    True
    The procedure adds the class whose qualified name starts with the string passed as the AValue parameter.

    Remarks

    Call the AddQualifiedClassName class procedure to add the specified form class to the ignore list.

    Code Example: Use Qualified Names to Manage the Ignore List

    The following code example removes the first matching class declared in the FormSource unit and adds the first form class declared in the MyFormSource unit:

    uses
      dxSkinsForm;  // Declares the TdxSkinIgnoredFormList class
    // ...
      TdxSkinIgnoredFormList.RemoveQualifiedClassName('FormSource.', True);
      TdxSkinIgnoredFormList.AddQualifiedClassName('MyFormSource.', True);
    

    Other Add Methods

    Add
    Adds one or more form classes to the ignore list.
    AddClassName
    Adds the specified form class name to the ignore list.
    See Also