60000954 Use the line type on a line segment from the beginning and not from the center

Article 60000954
Type Wish
Product Engine
Version 6016
Date Added 9/9/2009 12:00:00 AM
Fixed (9/9/2009 12:00:00 AM)
Submitted by Florian Rappel

Summary

Use the line type on a line segment from the beginning and not from the center

Solution

A new property DrawMethod (Get/Set) for vdLineType object was added in 6017 which is a value from VectorDraw.Render.LineType.LineTypeDrawMethod enum

///


/// Controls the way that the linetype is drawn on the line segments.
///

public enum LineTypeDrawMethod
{
///
/// Using this value the linetype starts from the beginning of the segment and continues similar to the end.
///

Start,
///
/// The linetype is centered to the length of the segment.
///

Center,
}

Default value of DrawMethod is Center

Send comments on this topic.