Ejemplo n.º 1
0
 private void SetBrush(IReadOnlyDictionary<string, string> rDict)
 {
     int brush_fgcolor = this.GetIntPr(rDict, "brush_fgcolor", 0),
         brush_bgcolor = this.GetIntPr(rDict, "brush_bgcolor", 0),
         brush_pattern = this.GetIntPr(rDict, "brush_pattern", 1),
         brush_transparent = this.GetIntPr(rDict, "brush_transparent", 0);
     MiApi.mitab_c_set_brush(this.Handle, brush_fgcolor, brush_bgcolor, brush_pattern, brush_transparent);
 }