Skip to content

Latest commit

 

History

History
37 lines (29 loc) · 647 Bytes

File metadata and controls

37 lines (29 loc) · 647 Bytes

IsDropShadowEnabled

FUNCTION IsDropShadowEnabled(h : HANDLE): BOOLEAN;
def vs.IsDropShadowEnabled(h):
    return BOOLEAN

Parameters

Name Type Description
h HANDLE

Examples

resultOK := IsDropShadowEnabled(h);
import vs

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

ok = vs.IsDropShadowEnabled(h)
if ok:
    vs.Message('IsDropShadowEnabled succeeded')
else:
    vs.Message('IsDropShadowEnabled failed')

Version

Availability: from Vectorworks 2017

Category