|
FormExtensionsRestoreSize(Form) Method
|
Restores the size of the specified windowsForm from the size information saved in the application configuration file.
Namespace: GSF.Windows.FormsAssembly: GSF.Windows (in GSF.Windows.dll) Version: 2.4.248-beta
Syntaxpublic static void RestoreSize(
this Form windowsForm
)
<ExtensionAttribute>
Public Shared Sub RestoreSize (
windowsForm As Form
)
public:
[ExtensionAttribute]
static void RestoreSize(
Form^ windowsForm
)
[<ExtensionAttribute>]
static member RestoreSize :
windowsForm : Form -> unit
GSF.Windows.Forms.FormExtensions.RestoreSize = function(windowsForm);
View SourceParameters
- windowsForm Form
- The Form whose size is to be restored.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
Form. When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic) or
Extension Methods (C# Programming Guide).
RemarksThis function uses the default settings category "LastWindowSize"
See Also