Image.Width

Image.Width property

Gets the image width.

public abstract int Width { get; }

Property Value

The image width.

Examples

Prints drawing’s width

Image drawing = ...
System.Console.WriteLine("Drawing's width: " + drawing.Width);

See Also