Intersoft ClientUI Documentation
Hide Method
See Also  Example Send Feedback
Intersoft.Client.UI.Aqua.UXDesktop Namespace > UXWindow Class : Hide Method






Hides the window.

Syntax

Visual Basic (Declaration) 
Public Sub Hide() 
Visual Basic (Usage)Copy Code
Dim instance As UXWindow
 
instance.Hide()
C# 
public void Hide()
Delphi 
public procedure Hide(); 
JScript 
public function Hide();
Managed Extensions for C++ 
public: void Hide(); 
C++/CLI 
public:
void Hide(); 

Example

The following example shows how to create a new instance of HomeWindow class and hide the window using API on a button click.
C#Copy Code
private void UXButton1_Click(object sender, RoutedEventArgs e)
{
    HomeWindow window = new HomeWindow();
    window.Hide();
}

Remarks

The Hide method used to display the window.

Requirements

Target Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, Windows Vista, Windows Server 2008 family

See Also

© 2012 All Rights Reserved.