Skip to main content
All docs
V24.2

TdxSkinIgnoredFormList.RemoveClassName(string,Boolean) Method

Removes the specified form class name from the ignore list.

Declaration

class procedure RemoveClassName(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 removes only the class whose name matches the AValue parameter value.
True
The procedure removes the first class whose name starts with the string passed as the AValue parameter.

Remarks

Call the RemoveClassName class procedure to remove the specified class name from the ignore list. You can call the Clear class procedure to remove all form classes from the ignore list.

Other Remove Methods

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