|   | FormExtensionsSaveLayout Method | 
        
        
            Saves the size and location information of the specified windowsForm to the application configuration file.
            
        
        Namespace: GSF.Windows.FormsAssembly: GSF.Windows (in GSF.Windows.dll) Version: 2.4.257-beta
 Syntax
Syntaxpublic static void SaveLayout(
	this Form windowsForm
)
<ExtensionAttribute>
Public Shared Sub SaveLayout ( 
	windowsForm As Form
)
public:
[ExtensionAttribute]
static void SaveLayout(
	Form^ windowsForm
)
[<ExtensionAttribute>]
static member SaveLayout : 
        windowsForm : Form -> unit GSF.Windows.Forms.FormExtensions.SaveLayout = function(windowsForm);
Parameters
- windowsForm  Form
- The Form whose size and location information is to be saved.
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).
 Remarks
RemarksThis function simply calls the SaveWindowSize and SaveWindowLocation functions using the default settings categories
 See Also
See Also