Skip to content

Latest commit

 

History

History
56 lines (44 loc) · 1.15 KB

File metadata and controls

56 lines (44 loc) · 1.15 KB

Field

Description

Obsolete. Use SetRField for new scripts.

PROCEDURE Field(
				h  : HANDLE;
				s1 : STRING;
				s2 : STRING;
				s3 : STRING);
def vs.Field(h, s1, s2, s3):
    return None

Parameters

Name Type Description
h HANDLE
s1 STRING
s2 STRING
s3 STRING

Remarks

Obsolete function maintained for compatibility with old scripts. Use SetRField for new scripts.

[sd 9/14/98] Update the RecordNode attached to object "h" by setting the field "s2" of format "s1" to the value "s3". The object is not redrawn immediately, so don't call this for a symbol which uses the "link text to record" feature.

Examples

Field(h, 'Example', 'Example', 'Example');
import vs

# _Obsolete.
h = vs.FSActLayer()  # handle to the first selected object on the active layer
s1 = 'Example'
s2 = 'Example'
s3 = 'Example'

vs.Field(h, s1, s2, s3)

See Also

VS Functions: SetRField

Version

Availability: from All Versions. Obsolete from VW 9.

Category