|   | DigitalDefinitionSetLabel Method | 
        
        
        
        Namespace: GSF.PhasorProtocols.IEEEC37_118Assembly: GSF.PhasorProtocols (in GSF.PhasorProtocols.dll) Version: 2.4.257-beta
 Syntax
Syntaxpublic void SetLabel(
	int index,
	string value
)
Public Sub SetLabel ( 
	index As Integer,
	value As String
)
public:
void SetLabel(
	int index, 
	String^ value
)
member SetLabel : 
        index : int * 
        value : string -> unit function SetLabel(index, value);
Parameters
- index  Int32
- Index of desired bit label to access.
- value  String
- Value of the bit label to assign.
 Remarks
RemarksIn the final version of the protocol each digital bit can be labeled, but we read them out as one big string in the "Label" property so this property allows individual access to each label.
Note that the draft 6 implementation of the protocol supports one label for all 16-bits, however draft 7 (i.e., version 1) supports a label for each of the 16 bits.
 See Also
See Also