CircleDrillShapePattern IsConcentricCirclesEnabled

Get or Set whether the concentric circles are enabled for this circle drill shape.

public bool IsConcentricCirclesEnabled {get;Set}

 

Return value

bool TRUE if concentric circles are set

 

Example

Copy
empty CircleDrillShapePattern circleDrilPat = new CircleDrillShapePattern();

 circleDrilPat.DeltaRadius = 1;
 circleDrilPat.IsClockwise = false;
 
 circleDrilPat.IsConcentricCirclesEnabled = true;
 
 circleDrilPat.MaxRadius = 6;
 circleDrilPat.MinRadius = 2;
 circleDrilPat.RevsPerCircle = 1;
 circleDrilPat.UsePointRadiusAsMaxRadius = true;


 //Create a spiral shape.
 DrillShape drillShape = new DrillShape();
 drillShape.SetPattern(circleDrilPat);

 drillShape.AddCirclePoint(0, 0, 0, 10);
 drillShape.AddCirclePoint(10, 10, 0, 10);
 drillShape.AddCirclePoint(20, 20, 0, 10);

 // Add the Drill shape to vector image
 vectorImage.AddDrill(drillShape);