This document is archived and information here might be outdated.  Recommended version.


IRulerSettings.SmallestDivision Property (ArcObjects .NET 10.8 SDK)
ArcObjects Help for .NET developers > ArcObjects Help for .NET developers > ArcObjects namespaces > Carto > ESRI.ArcGIS.Carto > Interfaces > IR > IRulerSettings Interface > IRulerSettings.SmallestDivision Property
ArcGIS Developer Help

IRulerSettings.SmallestDivision Property

The size of the smallest ruler division. The size is in page units.

[Visual Basic .NET]
Public Property SmallestDivision As Double
[C#]
public double SmallestDivision {get; set;}
[C++]
HRESULT get_SmallestDivision(
  System.Double* rulerDivision
);
[C++]
HRESULT put_SmallestDivision(
  double rulerDivision
);
[C++]
Parameters
rulerDivision [out, retval]

rulerDivision is a parameter of type double* rulerDivision [in]
rulerDivision is a parameter of type double

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

Remarks

The PageLayout object has a RulerSettings object which manages ruler settings.  IRulerSettings only has one property, SmallestDivision.  This property controls the size of the smallest ruler division in page units.  For example, if the page size is 8.5 by 11 inches, and the SmallestDivision is set to 2, the rulers, seen in layout view, will read off every 2 inches; if the property is set to .1, the rulers will read of every 1/10 of an inch.

See Also

IRulerSettings Interface