ScreenUPG
setDescription Method
Example 



The text description that you want to assign to the instance of the Screen object.
Creates a custom description for the instance of the Screen object.
Syntax
'Declaration
 
Public Sub setDescription( _ 
   ByVal description As String _ 
) 
'Usage
 
Dim instance As ScreenUPG 
Dim description As String 
  
instance.setDescription(description)
public void setDescription( 
   string description 
)
public: 
void setDescription( 
   String^ description 
) 

Parameters

description
The text description that you want to assign to the instance of the Screen object.
Example
string description = "first session instance";
            
screen.setDescription(description);
Dim description As String
            
description = "first session instance"
screen.setDescription description
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

ScreenUPG Class
ScreenUPG Members
getDescription Method