Prod.: Engine, ver.: 6016, ID: 60000954, Wish : Use the line type on a line segment from the beginning and not from the center

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

Article60000954
TypeWish
ProductEngine
Version6016
Date Added9/9/2009
FixedYes [9/9/2009]
Submitted byFlorian Rappel
Keywords

Subject

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

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