Spread Windows Forms 13.0 Product Documentation
FarPoint.Win.Spread Assembly / FarPoint.Win.Spread.Model Namespace / DefaultSheetStyleModel Class / Deserialize Method
XmlNodeReader from which to load the object
Example


In This Topic
    Deserialize Method (DefaultSheetStyleModel)
    In This Topic
    Loads the object from XML.
    Syntax
    'Declaration
     
    Public Overridable Function Deserialize( _
       ByVal r As XmlNodeReader _
    ) As Boolean
    'Usage
     
    Dim instance As DefaultSheetStyleModel
    Dim r As XmlNodeReader
    Dim value As Boolean
     
    value = instance.Deserialize(r)
    public virtual bool Deserialize( 
       XmlNodeReader r
    )

    Parameters

    r
    XmlNodeReader from which to load the object

    Return Value

    Boolean: true if successful; false otherwise
    Example
    This example deserializes the model. Note: The model must be serialized first.
    Dim defstyleModel As New FarPoint.Win.Spread.Model.DefaultSheetStyleModel()
    defstyleModel = FpSpread1.ActiveSheet.Models.Style
    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("Style"))
    node = node.NextSibling
    End While
    Dim r As New System.Xml.XmlNodeReader(node)
    r.Read()
    b = defstyleModel.Deserialize(r)
    ListBox1.Items.Add(b)
    FarPoint.Win.Spread.Model.DefaultSheetStyleModel defstyleModel = new FarPoint.Win.Spread.Model.DefaultSheetStyleModel();
    defstyleModel = (FarPoint.Win.Spread.Model.DefaultSheetStyleModel)fpSpread1.ActiveSheet.Models.Style;
    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("Style"))
    node = node.NextSibling;
    System.Xml.XmlNodeReader r = new System.Xml.XmlNodeReader(node);
    r.Read();
    b = defstyleModel.Deserialize(r);
    listBox1.Items.Add(b.ToString());
    See Also