Skip to content

Latest commit

 

History

History
38 lines (29 loc) · 819 Bytes

File metadata and controls

38 lines (29 loc) · 819 Bytes

SetCallBackInval

Description

Sets whether or not callbacks should be invalidating portions of the screen that are being changed. This should be used if you need to create temporary objects for calculation purposes and do not want the screen to be redrawn as a result

PROCEDURE SetCallBackInval(turnInvalOn : BOOLEAN);
def vs.SetCallBackInval(turnInvalOn):
    return None

Parameters

Name Type Description
turnInvalOn BOOLEAN

Examples

SetCallBackInval(TRUE);
import vs

# Sets whether or not callbacks should be invalidating portions of the screen
# that are being changed.
turnInvalOn = True

vs.SetCallBackInval(turnInvalOn)

Version

Availability: from Vectorworks 2014

Category