Need an API to Save or Load serialized object without SaveFileDialog
We have exposed two methods to save and load the serialized xml data in string format. The following are the methods.
C#
// To serialize to stringString SerializedXmlString() //To deserializeusing the saved string stringDeserializeXmlString(string xmlString). string SavedXML = this.pivotGridControl1.SerializedXmlString(); this.pivotGridControl1.DeserializeXmlString(SavedXML);