Spread Windows Forms 12.0 Product Documentation
Serialize Method (DefaultSheetStyleModel)
Example 


FarPoint.Win.Spread Assembly > FarPoint.Win.Spread.Model Namespace > DefaultSheetStyleModel Class : Serialize Method
XmlTextWriter object to which to save the object
Saves the object to XML.
Syntax
'Declaration
 
Public Overridable Function Serialize( _
   ByVal w As XmlTextWriter _
) As Boolean
'Usage
 
Dim instance As DefaultSheetStyleModel
Dim w As XmlTextWriter
Dim value As Boolean
 
value = instance.Serialize(w)
public virtual bool Serialize( 
   XmlTextWriter w
)

Parameters

w
XmlTextWriter object to which to save the object

Return Value

Boolean: true if successful; false otherwise
Example
This example serializes the model.
FarPoint.Win.Spread.Model.DefaultSheetStyleModel defstyleModel = new FarPoint.Win.Spread.Model.DefaultSheetStyleModel();
FarPoint.Win.Spread.StyleInfo sInfo = new FarPoint.Win.Spread.StyleInfo();
defstyleModel = (FarPoint.Win.Spread.Model.DefaultSheetStyleModel)fpSpread1.ActiveSheet.Models.Style;
sInfo.BackColor = Color.LightBlue;
defstyleModel.SetDirectInfo(0, 0, sInfo);
string fileName;
fileName = "D:\\Temp\\myser.xml";
System.IO.Stream stream; 
stream = System.IO.File.Open(fileName, System.IO.FileMode.Create);
System.Xml.XmlTextWriter writer = new System.Xml.XmlTextWriter(stream, System.Text.Encoding.UTF8);
writer.Formatting = System.Xml.Formatting.Indented;
writer.Indentation = 2;
writer.WriteStartDocument();
writer.WriteStartElement("Style");
defstyleModel.Serialize(writer);
writer.WriteEndElement();
writer.WriteEndDocument();
writer.Close();
Dim defstyleModel As New FarPoint.Win.Spread.Model.DefaultSheetStyleModel()
Dim sInfo As New FarPoint.Win.Spread.StyleInfo()
defstyleModel = FpSpread1.ActiveSheet.Models.Style
sInfo.BackColor = Color.LightBlue
defstyleModel.SetDirectInfo(0, 0, sInfo)
Dim fileName As String
fileName = "D:\Temp\myser.xml"
Dim stream As System.IO.Stream
stream = System.IO.File.Open(fileName, System.IO.FileMode.Create)
Dim writer As New System.Xml.XmlTextWriter(stream, System.Text.Encoding.UTF8)
writer.Formatting = System.Xml.Formatting.Indented
writer.Indentation = 2
writer.WriteStartDocument()
writer.WriteStartElement("Style")
defstyleModel.Serialize(writer)
writer.WriteEndElement()
writer.WriteEndDocument()
writer.Close()
See Also

Reference

DefaultSheetStyleModel Class
DefaultSheetStyleModel Members
CanSerializeXml Property