SpiralDrillShapePattern Outwards

Gets or Sets whether the drilling direction should be outwards or inwards. Setting the property to TRUE will result in an outward laser beam travel, starting from the center and vice versa.

public bool Outwards {get;Set}

 

Return value

bool TRUE if the marking direction is set to outwards

 

Example

Copy
SpiralDrillShapePattern spiralDrilPat = new SpiralDrillShapePattern();
spiralDrilPat.Clockwise = true;
spiralDrilPat.Angle = 0;
spiralDrilPat.InnerRadius = 5;
spiralDrilPat.InnerRotations = 2;
spiralDrilPat.OuterRadius = 10;
spiralDrilPat.OuterRotations = 2;

spiralDrilPat.Outwards = false;

spiralDrilPat.Pitch = 1;
spiralDrilPat.ReturnToStart = false;

//Create a drill shape.
DrillShape drillShape = new DrillShape();
drillShape.SetPattern(spiralDrilPat);