com.mindfusion.diagramming
Class GridStyle

java.lang.Object
  extended by com.mindfusion.diagramming.GridStyle

public class GridStyle
extends java.lang.Object

The members of this enumeration specify how the alignment grid should be drawn on the screen. These constants can be used as arguments of the Diagram.setGridStyle(int) method of the Diagram class.


Field Summary
static int Lines
          The grid is drawn as a series of crossing horizontal and vertical lines.
static int Points
          The alignment grid is drawn as a matrix of points.
 
Constructor Summary
GridStyle()
           
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

Points

public static final int Points
The alignment grid is drawn as a matrix of points.

See Also:
Constant Field Values

Lines

public static final int Lines
The grid is drawn as a series of crossing horizontal and vertical lines.

See Also:
Constant Field Values
Constructor Detail

GridStyle

public GridStyle()