Skip to content

Latest commit

 

History

History
51 lines (40 loc) · 957 Bytes

File metadata and controls

51 lines (40 loc) · 957 Bytes

SetDimNote

Description

Procedure SetDimNote sets the note text of the referenced dimension to the specified value.

PROCEDURE SetDimNote(
				h    : HANDLE;
				note : STRING);
def vs.SetDimNote(h, note):
    return None

Parameters

Name Type Description
h HANDLE Handle to dimension.
note STRING Note string.

Remarks

Sets note text (text under dimension line or dimension text) of the referenced dimension to the specified value.

[ao 3/6/14]

Examples

SetDimNote(dimHandle,'DLO');
SetDimNote(h, 'Example');
import vs

# Procedure SetDimNote sets the note text of the referenced dimension to the
# specified value.
h = vs.FSActLayer()  # handle to the first selected object on the active layer
note = 'Example'

vs.SetDimNote(h, note)

Version

Availability: from Vectorworks 2015

Category