Skip to content

Latest commit

 

History

History
37 lines (29 loc) · 587 Bytes

File metadata and controls

37 lines (29 loc) · 587 Bytes

EnableDropShadow

PROCEDURE EnableDropShadow(
				h      : HANDLE;
				enable : BOOLEAN);
def vs.EnableDropShadow(h, enable):
    return None

Parameters

Name Type Description
h HANDLE
enable BOOLEAN

Examples

EnableDropShadow(h, TRUE);
import vs

h = vs.FSActLayer()  # handle to the first selected object on the active layer
enable = True

vs.EnableDropShadow(h, enable)

Version

Availability: from Vectorworks 2017

Category