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 exporter plugin.

Remarks

The exporter will only be visible in the exporter dialog if the selected layers matches their type with this function.

Example

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

See Also

Exporter API