C# Class Nexus.Client.Settings.WindowPositions.LocationInfo

The location info for a window.
Inheritance: IXmlSerializable
Datei anzeigen Open project: NexusMods/NexusModManager-4.5

Public Methods

Method Description
GetSchema ( ) : XmlSchema

This method is reserved, and returns as required.

LocationInfo ( ) : System.Collections.Generic

The default constructor.

LocationInfo ( Point p_pntLocation, Size p_szeSize, bool p_booIsMaximized ) : System.Collections.Generic

A simple constructor that initializes the object with the given values.

ReadXml ( XmlReader reader ) : void

Deserializes the object from XML.

WriteXml ( XmlWriter writer ) : void

Serializes the object to XML.

Method Details

GetSchema() public method

This method is reserved, and returns as required.
public GetSchema ( ) : XmlSchema
return System.Xml.Schema.XmlSchema

LocationInfo() public method

The default constructor.
public LocationInfo ( ) : System.Collections.Generic
return System.Collections.Generic

LocationInfo() public method

A simple constructor that initializes the object with the given values.
public LocationInfo ( Point p_pntLocation, Size p_szeSize, bool p_booIsMaximized ) : System.Collections.Generic
p_pntLocation System.Drawing.Point Where the window is located.
p_szeSize System.Drawing.Size The window size.
p_booIsMaximized bool Whether the window is maximized.
return System.Collections.Generic

ReadXml() public method

Deserializes the object from XML.
public ReadXml ( XmlReader reader ) : void
reader System.Xml.XmlReader The xml reader from which to deserialize the object.
return void

WriteXml() public method

Serializes the object to XML.
public WriteXml ( XmlWriter writer ) : void
writer System.Xml.XmlWriter The xml writer to which to serialize the object.
return void