Function GetTexBitFeatureSize returns the feature size of the referenced bitmap in real world inches.
FUNCTION GetTexBitFeatureSize(textureBitmap : HANDLE): REAL;def vs.GetTexBitFeatureSize(textureBitmap):
return REAL| Name | Type | Description |
|---|---|---|
| textureBitmap | HANDLE | Handle to texture bitmap. |
Returns feature size in real-world inches
resultVal := GetTexBitFeatureSize(textureBitmap);import vs
# Function GetTexBitFeatureSize returns the feature size of the referenced
# bitmap in real world inches.
textureBitmap = vs.FSActLayer() # handle to the first selected object on the active layer
value = vs.GetTexBitFeatureSize(textureBitmap)
vs.Message('GetTexBitFeatureSize returned: ' + str(value))Availability: from VectorWorks8.0