Skip to content

Latest commit

 

History

History
61 lines (50 loc) · 1.5 KB

File metadata and controls

61 lines (50 loc) · 1.5 KB

CreateTile

Description

Creates a new tile resource.

FUNCTION CreateTile(tileName : STRING): HANDLE;
def vs.CreateTile(tileName):
    return HANDLE

Parameters

Name Type Description
tileName STRING A user-specified name by which the newly created tile will be identified.

Examples

tileHandle := CreateTile('My Tile');
resultH := CreateTile('Example');
import vs

# Creates a new tile resource.
tileName = 'Example'

objHandle = vs.CreateTile(tileName)
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