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

    Adds the specified form class name to the ignore list.

    Declaration

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

    Parameters

    Name Type Description
    AValue string

    The full or partial name of the target class 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 name matches the AValue parameter value.
    True
    The procedure adds the first class whose name starts with the string passed as the AValue parameter.

    Remarks

    Call the AddClassName class procedure to add the specified class name to the ignore list.

    Code Example: Add Multiple Class Names

    The following code example adds the form class whose name starts with 'TMy':

    uses
      dxSkinsForm;  // Declares the TdxSkinIgnoredFormList class
    // ...
      TdxSkinIgnoredFormList.AddClassName('TMy', True);
    

    Other Add Methods

    Add
    Adds one or more form classes to the ignore list.
    AddQualifiedClassName
    Adds one or more qualified form class names to the ignore list.
    See Also