Loads an object from XML.
            
            
            
Syntax
| Visual Basic (Declaration) |   | 
|---|
Public Overridable Function Deserialize( _
   ByVal r As XmlNodeReader _
) As Boolean  | 
 
            Parameters
- r
 
- XmlNodeReader from which to load the object
 
            
            Return Value
True if successful; false otherwise
 
            
						
            
            
            
            
Example
This example loads the object from the XmlNodeReader.
             
| C# |  Copy Code | 
|---|
FarPoint.Win.Spread.Model.DefaultSheetAxisModel dsam = new FarPoint.Win.Spread.Model.DefaultSheetAxisModel();
dsam = (FarPoint.Win.Spread.Model.DefaultSheetAxisModel)fpSpread1.ActiveSheet.Models.RowAxis;
bool b;
System.Xml.XmlDocument doc = new System.Xml.XmlDocument();
doc.Load("D:\\Temp\\myser.xml");
System.Xml.XmlNode node; 
node = doc.FirstChild;
while (!node.Name.Equals("AxisModel"))
node = node.NextSibling;
System.Xml.XmlNodeReader r = new System.Xml.XmlNodeReader(node);
r.Read();
b = dsam.Deserialize(r);
ListBox1.Items.Add(b.ToString()); | 
 
| Visual Basic |  Copy Code | 
|---|
Dim dsam As New FarPoint.Win.Spread.Model.DefaultSheetAxisModel()
dsam = FpSpread1.ActiveSheet.Models.RowAxis
Dim b As Boolean
Dim doc As New System.Xml.XmlDocument()
doc.Load("D:\Temp\myser.xml")
Dim node As System.Xml.XmlNode
node = doc.FirstChild
While Not (node.Name.Equals("AxisModel"))
node = node.NextSibling
End While
Dim r As New System.Xml.XmlNodeReader(node)
r.Read()
b = dsam.Deserialize(r)
ListBox1.Items.Add(b) | 
 
 
            
            
Requirements
Target Platforms: Windows 2000 Professional (SP4), Windows 2000 Server, Windows 2003 Server (SP1), Windows 2008, Windows XP (SP2), Windows Vista, Windows 7, Windows 8
 
            
            
See Also