SVGGraphics.SetPixel C# (CSharp) 메소드

SetPixel() 공개 메소드

public SetPixel ( int x, int y ) : void
x int
y int
리턴 void
    public void SetPixel(int x, int y)
    {
        device.SetPixel(x, y);
    }

Usage Example

예제 #1
0
 private void FillInZone()
 {
     for (int i = inZoneL; i < subW + inZoneL; i++)
     {
         for (int j = inZoneT; j < subH + inZoneT; j++)
         {
             if (flag[i, j] != FILL_FLAG)
             {
                 graphics.SetPixel(i, j);
             }
         }
     }
 }
All Usage Examples Of SVGGraphics::SetPixel