Very serious serializing problem !
Posted: Tue Jun 27, 2006 11:53 am
I have custom classes that inherited from Steema classes ..
And also some of my classes has instance of Steema's classes and all of my classes integrated with Steema's ..
What must i do for clear serialization , I will use serialization for Saving and Loading data...
Should i implement Steema.TeeChart.Export.TemplateExport.ICustomSerialization to my classes ?
Should i imitate DeserializeFrom and SerializeObject method ..
Thx for advice ...
And also some of my classes has instance of Steema's classes and all of my classes integrated with Steema's ..
Code: Select all
Class RChart:TChart
{
List<RFunction> listRF;
List<RAxis> listRA;
}
class RFunction
{
Chart c;
}
class RAxis:Axis
class RCustomPoint
{
CustomPoint CP;
}
Should i implement Steema.TeeChart.Export.TemplateExport.ICustomSerialization to my classes ?
Should i imitate DeserializeFrom and SerializeObject method ..
Thx for advice ...