Skip to main content
All docs
V24.2

TdxSkinIgnoredFormList.RemoveQualifiedClassName(string,Boolean) Method

Removes the specified qualified form class name from the ignore list.

Declaration

class procedure RemoveQualifiedClassName(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 as a prefix or a full class name:

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

Remarks

Call the RemoveQualifiedClassName class procedure to remove the specified form class from the ignore list. You can call the Clear class procedure to remove all form classes from 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;  // This unit declares the TdxSkinIgnoredFormList class
// ...
  TdxSkinIgnoredFormList.RemoveQualifiedClassName('FormSource.', True);
  TdxSkinIgnoredFormList.AddQualifiedClassName('MyFormSource.', True);

Other Remove Methods

Remove
Removes one or more form classes from the ignore list.
RemoveClassName
Removes the specified form class name from the ignore list.
See Also