DimStyleArrowSize

Returns or changes the arrow size of a dimension style.

Syntax

rhinoscriptsyntax.DimStyleArrowSize (dimstyle, size=None)

rhinoscript.dimension.DimStyleArrowSize (dimstyle, size=None)

Parameters

dimstyle

Required.  String.  The name of an existing dimension style.

size

Optional.  Number.  The new arrow size.  If omitted, the current arrow size is returned.

Returns

Number

If a size value is not specified, the current arrow size if successful.

Number

If a size value is specified, the previous arrow size if successful.

None

If not successful, or on error.

Example

import rhinoscriptsyntax as rs

dimstyle = rs.CurrentDimStyle()

size = rs.DimStyleArrowSize(dimstyle)

if size>1.0: rs.DimStyleArrowSize( dimstyle, 1.0 )

Also See

DimStyleAnglePrecision

DimStyleExtension

DimStyleFont

DimStyleLinearPrecision

DimStyleNumberFormat

DimStyleOffset

DimStyleTextAlignment

DimStyleTextHeight