Returns document shadow fill style, fill name or color index.
PROCEDURE DS_GetFillStyle(
VAR shadowFillStyle : INTEGER;
VAR shadowFillName : STRING;
VAR solidColorRef : LONGINT);def vs.DS_GetFillStyle():
return (shadowFillStyle, shadowFillName, solidColorRef)| Name | Type | Description |
|---|---|---|
| shadowFillStyle | INTEGER | |
| shadowFillName | STRING | |
| solidColorRef | LONGINT |
shadowAngle := DS_GetAngle;
shadowOpacity := DS_GetOpacity;
shadowOpByClass := DS_IsOpacityByClass;
docUnitsType := DS_GetOffsetUnit;{0 - page, 1 - document, 2 - from height}
DS_GetFillStyle( shadowFillStyle, shadowFillName, shadowColorRef);import vs
# Returns document shadow fill style, fill name or color index.
shadowFillStyle, shadowFillName, solidColorRef = vs.DS_GetFillStyle()
vs.Message('DS_GetFillStyle returned: ' + str((shadowFillStyle, shadowFillName, solidColorRef)))Availability: from Vectorworks 2014