Skip to content

Latest commit

 

History

History
27 lines (17 loc) · 561 Bytes

NT_SET_DESCRIPTION.md

File metadata and controls

27 lines (17 loc) · 561 Bytes
uid
NT_SET_DESCRIPTION

NT_SET_DESCRIPTION (131)

Sets the description of the specified parameter.

int parameterID = 110;
string description = "Status Code";

protocol.NotifyProtocol(131, parameterID, description);

Parameters

  • parameterID (int): The ID of the parameter.
  • description (string): The description of the parameter.

Return Value

  • Does not return an object.

Remarks

  • The SLProtocol interface defines a wrapper method "SetParameterDescription" for this call. See SLProtocol.SetParameterDescription method.