Skip to content

Latest commit

 

History

History
63 lines (52 loc) · 1.66 KB

File metadata and controls

63 lines (52 loc) · 1.66 KB

SetTileOffsetPoint

Description

Sets the specified tile resource's offset point.

PROCEDURE SetTileOffsetPoint(
				tileHandle  : HANDLE;
				offsetPoint : POINT);
def vs.SetTileOffsetPoint(tileHandle, offsetPoint):
    return None

Parameters

Name Type Description
tileHandle HANDLE The tile resource in which to set the offset point.
offsetPoint POINT The offsets point to be set.

Examples

SetTileRepetitionPoint(tileHandle, offsetPoint);
SetTileOffsetPoint(tileHandle, 1);
import vs

# Sets the specified tile resource's offset point.
tileHandle = vs.FSActLayer()  # handle to the first selected object on the active layer
offsetPoint = (0, 0)

vs.SetTileOffsetPoint(tileHandle, offsetPoint)

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