Skip to content

Latest commit

 

History

History
61 lines (50 loc) · 1.64 KB

File metadata and controls

61 lines (50 loc) · 1.64 KB

GetTileGeometryGroup

Description

Gets the tile resource's geometry group.

FUNCTION GetTileGeometryGroup(tileHandle : HANDLE): HANDLE;
def vs.GetTileGeometryGroup(tileHandle):
    return HANDLE

Parameters

Name Type Description
tileHandle HANDLE The handle to the tile from which to get the group.

Examples

tileGroupHandle := GetTileGeometryGroup(tileHandle);
resultH := GetTileGeometryGroup(tileHandle);
import vs

# Gets the tile resource's geometry group.
tileHandle = vs.FSActLayer()  # handle to the first selected object on the active layer

objHandle = vs.GetTileGeometryGroup(tileHandle)
if objHandle is not None:
    vs.Message('Created object handle: ' + str(objHandle))

See Also

VS Functions: CreateTile | ShowEditTileDialog | ShowEditTileSettingsDialog | ShowNewTileDialog | GetTileGeometryGroup | BeginGroupN | AddTileGeometryObject | GetTileGroupParent | IsTileGroupContainedObject | GetTileBackgroundColor | SetTileBackgroundColor | GetTileRepetitionPoint | SetTileRepetitionPoint | GetTileOffsetPoint | SetTileOffsetPoint

Version

Availability: from Vectorworks 2011

Category