ImageEn, unit iexColorCurve

TIEColorCurve.GetCurvePoint

TIEColorCurve.GetCurvePoint


Declaration

function GetCurvePoint(Channel : TIECurveChannel; Idx: Integer): TPoint;


Description

Returns the position of point, idx, of the specified channel.


Example

// Show all points of the current channel
for i := 0 to IEColorCurve1.GetCurvePointCount( IEColorCurve1.Channel ) do
  memo1.Lines.Add( IntToStr( IEColorCurve1.GetCurvePoint( IEColorCurve1.Channel, i ). X ) + ', ' +
                   IntToStr( IEColorCurve1.GetCurvePoint( IEColorCurve1.Channel, i ). Y ));


See Also

 GetCurvePointCount