DynamicTextShape DotDurationInMicroseconds

Gets or sets the duration in which the laser should stay on to mark a dot in special dotted fonts used for tracing and OCR use. For example SEMI OCR font.

public int DotDurationInMicroseconds {get;Set}

 

Return value

int Duration of the laser (in microseconds) should stay on for a dot

 

Example

Copy
//Dynamic Text
DynamicTextShape dynamicText = new DynamicTextShape();
dynamicText.Height = 10;
dynamicText.Location = new Point3D(0, 0, 0);
dynamicText.VariableName = "dynText1";
dynamicText.Text = "Sample Text";
dynamicText.EvaluateVariableTags = true;
dynamicText.FontName = "Arial";
dynamicText.CharacterGap = 0;
dynamicText.ScaleX = 1;
dynamicText.ScaleY = 1;
dynamicText.Angle = 0;
dynamicText.CharacterGap = 0.9f;

dynamicText.DotDurationInMicroseconds = 4;

dynamicText.MarkingOrder = MarkingOrder.OutlineBeforeHatch;