SclGraphicsSetEdgePattern
Overview
Set the pattern with which edges of polygons are to be drawn.
Synopsis
SclGraphicsSetEdgePattern $pattern
Description
Polygons have edges (the perimeter of the polygon) which can have a pattern consisting of a variety of dots and dashes. The pattern is defined using a symbolic representation of dots and dashes and in some cases names.
Arguments
- pattern
- "---" A solid line.
- "- -" A simple dashed line.
- "...." A dotted line.
- "-.-." Dashes and dots alternating.
- "-..-.." Dashes and double-dot alternating.
- "-..." Dashes and triple-dot alternating.
- "---- ----" Long dashes.
- "center" Very-long-dash and short-dash alternating.
- "phantom" Very-long-dash and double-short-dash alternating.
Pass by value. Permitted values for pattern include:
Returns
Nothing.
Examples
SclGraphicsOpen mynode SclGraphicsSetEdgePattern "---" SclGraphicsSetEdgePattern phantom SclGraphicsClose