Skip to content

Latest commit

 

History

History
40 lines (31 loc) · 766 Bytes

File metadata and controls

40 lines (31 loc) · 766 Bytes

Record

Description

Replaces an existing record with a new version of the same record. Parameter s specifies the record to be updated.

PROCEDURE Record(
				h : HANDLE;
				s : STRING);
def vs.Record(h, s):
    return None

Parameters

Name Type Description
h HANDLE Handle to object.
s STRING Name of record to be updated.

Remarks

Delete any existing record named "s" on "h", Create new record for format named 's', attach to "h".

Examples

VectorScript

Record(handleToObj,'Vendor Information');

Python

Version

Availability: from All Versions

Category