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 |
AIsPartialMatch | Boolean | Optional. Specifies if the procedure interprets the
|
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