fnSupportsType


Prototype

bool __cdecl fnSupportsType ( ShapeType t ); 

Return value

True if the plugin supports shapes of type t. False otherwise.

Parameters

t

The type of shapes for which ShapeUp queries the loader plugin.

Remarks

None

Example

bool __cdecl fnSupportsType ( ShapeType t )
{
    if (t == ShapeType_Polygon)
        return true;
    return false;
} 

See Also

Loader API