TdxSkinIgnoredFormList.Remove(TClass,Boolean) Method
Removes one or more form classes from the ignore list.
Declaration
class procedure Remove(AClass: TClass; AIncludeDescendants: Boolean = True);
Parameters
Name | Type | Description |
---|---|---|
AClass | TClass | The reference to the target form class. |
AIncludeDescendants | Boolean | Optional. Specifies if the procedure removes all descendants of the target form class from the ignore list. Pass |
Remarks
Call the Remove
class procedure to remove one or more form classes from the ignore list. You can call the Clear class procedure to remove all form classes from the ignore list.
Code Example: Remove Individual Form Classes from the Ignore List
The following code example removes two custom form classes from the ignore list:
uses
dxSkinsForm; // This unit declares the TdxSkinIgnoredFormList class
// ...
TdxSkinIgnoredFormList.Remove(TMyFormClass1, False); // Removes TMyFormClass1 without descendants
TdxSkinIgnoredFormList.Remove(TMyFormClass2, False); // Removes TMyFormClass2 without descendants
Other Remove Methods
- RemoveClassName
- Removes the specified form class name from the ignore list.
- RemoveQualifiedClassName
- Removes the specified qualified form class name from the ignore list.
See Also