LineGraphics.CoordinateSet Property
Parent Object: LineGraphicsDescription
Gets and sets the GraphicsCoordinateSet associated with the set.
Syntax
LineGraphics.CoordinateSet() As GraphicsCoordinateSetProperty Value
This is a read/write property whose value is a GraphicsCoordinateSet.Samples
Name | Description |
Client Graphics - Draw Range Box | This sample demonstrates the use of client graphics to draw the range box of selected entities. |
Client Graphics - Line | This sample demonstrates the creation of custom graphics using LineGraphics and LineStripGraphics. The same set of coordinate data is used for both types of graphics. Line graphics use two coordinates to define a line, and then the next two coordinates to define the next line, and so on through the defined coordinates. For the data provided, this results in gaps in the drawn curve. Line strips use the first two coordinates to define the first line and then the last point of the first line becomes the first point of the second line and the next coordinate is used as the end point of the second line. This results in the set of points being connected by a continuous set of lines, drawing a continuous curve. This sample also demonstrates two methods of defining the color for client graphics. In one case it uses an existing appearance asset, and in the other, it explicitly defines a color and assigns it. To use the sample you need to have an assembly or part document open. The program has two behaviors: the first time it is run it will draw the graphics. The second time it is run it deletes the previously drawn graphics. |
InteractionGraphics | The sample creates overlay graphics. |