The deserializer class for helping in the serialization process.
Inheritance: IDisposable
示例#1
0
 internal override void Deserialize(Deserializer ds)
 {
     base.Deserialize(ds);
     MinZ = ds.GetDouble();
     MaxZ = ds.GetDouble();
     ZLabel = ds.GetString();
 }
示例#2
0
 internal virtual void Deserialize(Deserializer ds)
 {
     Text = ds.GetString();
     X = ds.GetDouble();
     Y = ds.GetDouble();
 }
示例#3
0
 internal virtual void Deserialize(Deserializer ds)
 {
     Title = ds.GetString();
     ShowLegend = ds.GetBoolean();
     LegendBackground = ds.GetString();
     LegendLineColor = ds.GetString();
     LegendLineWidth = ds.GetDouble();
     LegendPosition = (LegendPosition)ds.GetInt();
     XLabel = ds.GetString();
     YLabel = ds.GetString();
     Gridlines = ds.GetBoolean();
     MinorGridlines = ds.GetBoolean();
     MinX = ds.GetDouble();
     MaxX = ds.GetDouble();
     MinY = ds.GetDouble();
     MaxY = ds.GetDouble();
 }