DekGenius.com
[ Team LiB ] Previous Section Next Section

CoordinateSpaceserializable

System.Drawing.Drawing2D (system.drawing.dll)enum

This enumeration specifies the three possible coordinate spaces to use with the System.Drawing.Graphics.TransformPoints() method. The Device coordinate space is the physical coordinate space of the target output device (the monitor or printer, for example). The Page coordinate space is the logical coordinate space of the graphics surface, and the World coordinate space is the surface coordinate space with the current Graphics.Transform applied. That transform is commonly referred to as the "World Transform."

public enum CoordinateSpace {
   World = 0,
   Page = 1,
   Device = 2
}

Hierarchy

System.Object System.ValueType System.Enum(System.IComparabl, System.IFormattable, System.IConvertible) CoordinateSpace

Passed To

System.Drawing.Graphics.TransformPoints()

    [ Team LiB ] Previous Section Next Section