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