/// <summary> /// Places resize thumbs at their respective positions /// and streches out thumbs which are at the center of outline to extend resizability across the whole outline /// </summary> /// <param name="designerThumb"></param> /// <param name="alignment"></param> /// <param name="index">if using a polygon or multipoint adorner this is the index of the point in the Points array</param> /// <returns></returns> protected PointTrackerPlacementSupport Place(ref DesignerThumb designerThumb, PlacementAlignment alignment, int index = -1) { PointTrackerPlacementSupport placement = new PointTrackerPlacementSupport(ExtendedItem.View as Shape, alignment, index); return placement; }
/// <summary> /// Places resize thumbs at their respective positions /// and streches out thumbs which are at the center of outline to extend resizability across the whole outline /// </summary> /// <param name="designerThumb"></param> /// <param name="alignment"></param> /// <param name="index">if using a polygon or multipoint adorner this is the index of the point in the Points array</param> /// <returns></returns> protected PointTrackerPlacementSupport Place(DesignerThumb designerThumb, PlacementAlignment alignment, int index = -1) { PointTrackerPlacementSupport placement = new PointTrackerPlacementSupport(ExtendedItem.View as Shape, alignment, index); return(placement); }