PNumber Function

Returns the point number associated with a point label.

Syntax
PNumber(pointLabel)

Parameters

pointLabel
Specify the point label in the current point file or a string representing the point label.

See Also
PDef Function, PLabel$ Function

PNumber Function Example

Integer pNum
String pointName$

pNum = PNumber(pick)

pNum = PNumber("pick")

pointName$ = "place"
pNum = PNumber(pointName$)