Skip to content

Latest commit

 

History

History
54 lines (46 loc) · 1.55 KB

File metadata and controls

54 lines (46 loc) · 1.55 KB

GetTileBackgroundColor

Description

Gets the specified tile resource's background color.

PROCEDURE GetTileBackgroundColor(
				tileHandle : HANDLE;
				VAR red    : LONGINT;
				VAR green  : LONGINT;
				VAR blue   : LONGINT);
def vs.GetTileBackgroundColor(tileHandle):
    return (red, green, blue)

Parameters

Name Type Description
tileHandle HANDLE The tile resource from which to get the background color.
red LONGINT Returns RGB color component value.
green LONGINT Returns RGB color component value.
blue LONGINT Returns RGB color component value.

Examples

GetTileBackgroundColor(tileHandle, backgroundColor);

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