This documentation is for the old version. Go to the latest Graphics Mill docs

RectangleController.outlineStyle Property

Gets/sets the rectangle outline pen style (solid, dashed, etc).

Namespace: GraphicsMill
Assembly: Aurigma.GraphicsMill.AjaxControls (in Aurigma.GraphicsMill.AjaxControls.dll)

Syntax

Java Script
function get_outlineStyle();
function set_outlineStyle(value);

Property Value

The string value represented the pen style of the rectangle outline.

Remarks

The following styles are available:

  • noneDefault. No border is drawn, regardless of any specified outlineWidth.
  • dottedBorder is a dotted line. This value is supported on the Macintosh platform, as of Microsoft Internet Explorer 4.01, and on the Microsoft Windows platform, as of Internet Explorer 5.5. It renders as a solid line on Unix platforms, and on Windows systems running earlier versions of Internet Explorer.
  • dashedBorder is a dashed line. This value is supported on the Macintosh platform as of Internet Explorer 4.01 and on the Windows platform, as of Internet Explorer 5.5. It renders as a solid line on Unix platforms, and on Windows systems running earlier versions of Internet Explorer.
  • solidBorder is a solid line.
  • doubleBorder is a double line drawn on top of the background of the object. The sum of the two single lines and the space between equals the outlineWidth value. The outline width must be at least 3 pixels wide to draw a double border.
  • groove3-D groove is drawn in colors based on the value.
  • ridge3-D ridge is drawn in colors based on the value.
  • inset3-D inset is drawn in colors based on the value.
  • outset3-D outset is drawn in colors based on the value.

This property corresponds to RectangleController.OutlineStyle server-side member.

See Also

Reference