Method: Remove for Properties <Data>
- Updated2024-09-12
- 1 minute(s) read
Internal Data > Methods > Method: Remove for Properties <Data>
Method: Remove for Properties <Data>
Deletes a custom property from the Properties collection in the script interface for internal data.
Object.Remove(NameOrIndex)
Object | Properties <Data> Object with this method |
NameOrIndex | Variant Specifies the name or the index of the property that is to be deleted. |
![]() | Note The Properties collection contains the base properties and the custom properties. You cannot delete base properties. |
The following example deletes the Tester custom property from the first channel group:
VBScript | Python |
Call Data.Root.ChannelGroups(1).Properties.Remove("Tester")