GetInt() 공개 메소드

Reads the next bytes as integer.
public GetInt ( ) : Int32
리턴 System.Int32
예제 #1
0
 internal void Deserialize(Deserializer ds)
 {
     Label     = ds.GetString();
     Color     = ds.GetString();
     ShowLabel = ds.GetBoolean();
     Symbol    = (PointSymbol)ds.GetInt();
     LineWidth = ds.GetDouble();
     Lines     = ds.GetBoolean();
 }
예제 #2
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();
 }
예제 #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();
 }