ImageEn, unit iexLayers

TIEShapeLayer.AutoCurving

TIEShapeLayer.AutoCurving

Declaration

property AutoCurving: Integer;

Description

Specifies the percentage of auto-curving applied to angles of the shape. The valid range is 0-100. 0 disables auto-curving.
This method applies cubic beziers to the shape.


Default: 0 (auto-curving is disabled)

Example

// Add a "starfish" shape
ImageEnView1.LayersAdd( ielkShape );
TIEShapeLayer( ImageEnView1.CurrentLayer ).Shape := iesStar5;
TIEShapeLayer( ImageEnView1.CurrentLayer ).AutoCurving := 60;
ImageEnView1.Update();

// Disable auto-curving
TIEShapeLayer( ImageEnView1.CurrentLayer ).AutoCurving := 0;
ImageEnView1.Update();

See Also

Shape
ShapeModifier