string PropertyTypeOverride { get; set; }

book_4_sparkGenerated
code_blocksInput

Description

The PropertyTypeOverride property is a string used internally to override the type of a variable to one that is recognized by the tools. This is particularly useful in scenarios where the default type needs to be adjusted for compatibility or specific tool requirements.

Usage

To use the PropertyTypeOverride property, simply set it to the desired type string that the tools can understand. This property is part of the MapClassVariable class, which represents a variable in the editor context.

Example

// Example of setting the PropertyTypeOverride
MapClassVariable variable = new MapClassVariable();
variable.PropertyTypeOverride = "CustomType";

// This sets the override type to "CustomType", which the tools will recognize.