Creates a custom description for the instance of the Screen object.
Namespace: ScreenUPG
Assembly: ScreenUPG (in ScreenUPG.dll)
Syntax
Visual Basic (Declaration) |
---|
Public Sub setDescription( _ ByVal description As String _ ) |
C# |
---|
public void setDescription( string description ) |
C++ |
---|
public: void setDescription( String description ) sealed |
J# |
---|
public void setDescription( string description ) |
JScript |
---|
public
function setDescription( description : String ) |
Parameters
- description
- The text description that you want to assign to the instance of the Screen object.
Example
[C#]
![]() | |
---|---|
string description = "first session instance"; screen.setDescription(description); |
![]() | |
---|---|
Dim description As String description = "first session instance" screen.setDescription description |