Description
The IsPointClass
property indicates whether the MapClass
instance represents a point entity. Point entities are typically model entities or similar types that do not have a physical presence in the map, unlike solid entities which are tied to a mesh.
Usage
Use the IsPointClass
property to determine if a MapClass
instance is a point entity. This can be useful when you need to differentiate between different types of entities in the map editor, such as when filtering entities for specific operations or visualizations.
Example
// Example of checking if a MapClass instance is a point class
MapClass mapEntity = new MapClass();
if (mapEntity.IsPointClass)
{
// Perform operations specific to point entities
// For example, apply specific logic or visualization
}