/**
  * Disable a plotting style
  */
 public void disable_style(PlotStyleMask style)
 {
     this._style &= ~((int)style);
 }
 /**
  * Enable a plotting style
  */
 void enable_style(PlotStyleMask style)
 {
     this._style |= (int)style;
 }