コード例 #1
0
 /**
  * Disable a plotting style
  */
 public void disable_style(PlotStyleMask style)
 {
     this._style &= ~((int)style);
 }
コード例 #2
0
 /**
  * Enable a plotting style
  */
 void enable_style(PlotStyleMask style)
 {
     this._style |= (int)style;
 }