Skip to content

Latest commit

 

History

History
37 lines (30 loc) · 683 Bytes

File metadata and controls

37 lines (30 loc) · 683 Bytes

GetFldName

Description

Returns the name of the specified field in the referenced record.

FUNCTION GetFldName(
				h     : HANDLE;
				index : INTEGER): STRING;
def vs.GetFldName(h, index):
    return STRING

Parameters

Name Type Description
h HANDLE Handle to record.
index INTEGER Number of field whose name will be returned (in a range of 1-n).

Examples

VectorScript

FName:=GetFldName(HandleToRecord,1);

Python

FName = vs.GetFldName(HandleToRecord,1)

Version

Availability: from All Versions

Category