Skip to content

Latest commit

 

History

History
38 lines (30 loc) · 732 Bytes

File metadata and controls

38 lines (30 loc) · 732 Bytes

UpdatePIOFromStyle

Description

Updates the given plugin object from its style, if it has any.

PROCEDURE UpdatePIOFromStyle(VAR pioHandle : HANDLE);
def vs.UpdatePIOFromStyle():
    return pioHandle

Parameters

Name Type Description
pioHandle HANDLE

Examples

createStyle := SetPluginStyle(borderH, titleBlockType);
UpdatePIOFromStyle(borderH);
import vs

# Updates the given plugin object from its style, if it has any.
objHandle = vs.UpdatePIOFromStyle()
if objHandle is not None:
    vs.Message('Created object handle: ' + str(objHandle))

Version

Availability: from Vectorworks 2021

Category