GoDigram for .NET Framework and .NET Core
Northwoods.Go.Draw Namespace / GoRuler Class / Intervals Property
In This Topic
    Intervals Property
    In This Topic
    Gets or sets the array of intervals of measurement for the ruler.
    Syntax
    [Description("The intervals on the ruler.")]
    [Category("Measurement")]
    public virtual double[] Intervals {get; set;}
    Remarks
    When setting the Intervals property, elements in the array are sorted in decending order. For example, if the value of Intervals was set to {100, 10, 1, 0.1}, then the ruler would be divided every 100 units, 10 units, 1 unit, and tenths of a unit. All of the marks at the specified intervals may not be visible at one time. The visibility of the marks representing the intervals depends on the the number of Intervals, the number of Marks specified, and the DocScale. If Intervals is null or contains no elements (Intervals.Length == 0), then no interval marks will be drawn onto the ruler
    See Also