コード例 #1
0
ファイル: Graphics.cs プロジェクト: datadiode/ReoGrid
 public void FillRectangle(HatchStyles style, SolidColor hatchColor, SolidColor bgColor, float x, float y, float width, float height)
 {
     this.g.FillRectangle(this.resourceManager.GetHatchBrush((HatchStyle)style, hatchColor, bgColor), x, y, width, height);
 }
コード例 #2
0
ファイル: Graphics.cs プロジェクト: datadiode/ReoGrid
 public void FillRectangle(HatchStyles style, SolidColor hatchColor, SolidColor bgColor, Rectangle rect)
 {
     this.g.FillRectangle(this.resourceManager.GetHatchBrush((HatchStyle)style, hatchColor, bgColor), rect);
 }
コード例 #3
0
 public void FillRectangle(HatchStyles style, SolidColor hatchColor, SolidColor bgColor, double x, double y, double width, double height)
 {
     // TODO
 }
コード例 #4
0
 public void FillRectangle(HatchStyles style, SolidColor hatchColor, SolidColor bgColor, Rectangle rect)
 {
     // TODO
 }
コード例 #5
0
ファイル: Graphics.cs プロジェクト: zhujingcheng/ReoGrid
 public void FillRectangle(HatchStyles style, SolidColor hatchColor, SolidColor bgColor, RGFloat x, RGFloat y, RGFloat width, RGFloat height)
 {
     throw new NotImplementedException();
 }
コード例 #6
0
ファイル: Graphics.cs プロジェクト: zhujingcheng/ReoGrid
 public void FillRectangle(HatchStyles style, SolidColor hatchColor, SolidColor bgColor, Rectangle rect)
 {
     throw new NotImplementedException();
 }