SVGGraphics.SetPixel C# (CSharp) Méthode

SetPixel() public méthode

public SetPixel ( int x, int y ) : void
x int
y int
Résultat void
    public void SetPixel(int x, int y)
    {
        device.SetPixel(x, y);
    }

Usage Example

Exemple #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