PLabel Method

Description
Gets or sets the point label associated with a point number.

Syntax
Function PLabel (PointNumber As Integer) As String
Sub PLabel (PointNumber As Integer, PointName As String)

Parameters

  • PointNumber
    An integer indicating the point number.
  • PointName
    A character string that specifies the label to use for the designated pointer data.

Return Value
Returns the corresponding label to the specified point number.

See Also
PDef Method

PLabel Example
VB Example:

Dim pt1Label As String  
Pt1Label = m_spel.PLabel(1)  

C# Example:

string pt1Label;  
pt1Label = m_spel.PLabel(1);