Gets or sets the window-size used for the Telnet WindowSize option.
Syntax
Visual Basic (Declaration) | |
---|
Public Property WindowSize As Size |
Visual Basic (Usage) | Copy Code |
---|
Dim instance As Telnet
Dim value As Size
instance.WindowSize = value
value = instance.WindowSize |
C# | |
---|
public Size WindowSize {get; set;} |
Managed Extensions for C++ | |
---|
public: __property Size get_WindowSize();
public: __property void set_WindowSize(
Size value
); |
C++/CLI | |
---|
public:
property Size WindowSize {
Size get();
void set ( Size value);
} |
Property Value
A
Size object with default Width and Height values of 80 and 24.
Requirements
Target Platforms: Microsoft .NET Framework 2.0
See Also