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