Interface ICamApiCurve2DModelItemWithBridges
Mixin on ICamApiCurve2DModelItem giving typed access to the list of
bridges (tabs) placed on this curve. Obtain via QueryInterface from
a curve item returned by AddCurves2DSelected / GetItem on a curve2D
former. Implemented by TCurveOpAddInfo.
Assembly: CAMAPI.ModelFormerTypes.dll
[Guid("C5313544-45D0-4D7E-A08E-5F2AFE859289")]
[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
public interface ICamApiCurve2DModelItemWithBridges
Properties
Number of bridges currently placed on this curve.
Declaration
int BridgesCount { get; }
Property Value
Methods
Declaration
ICamApiCurveBridgeModelItem AddBridge(double Position)
Parameters
| Type |
Name |
Description |
| double |
Position |
|
Returns
Remove all bridges from this curve. Equivalent of ClearBridges(true) on the former for a single curve.
Declaration
Declaration
void DeleteBridge(int Index)
Parameters
| Type |
Name |
Description |
| int |
Index |
|
Declaration
ICamApiCurveBridgeModelItem GetBridge(int Index)
Parameters
| Type |
Name |
Description |
| int |
Index |
|
Returns
Reverse bridge order and mirror each Position to 100-Position. Matches UI "invert curve" behavior.
Declaration