Click or drag to resize

JobClampings Property

Returns the collection of Clamping configurations associated with the job. Each clamping setup defines a workpiece positioning and represents a distinct manufacturing phase with its own machining planes (sides), operations, and coordinate system. Multiple clampings enable complex multi-sided manufacturing sequences where different operations are performed in coordinated phases.

Namespace: Woodwork.Automation
Assembly: WoodworkAutomation (in WoodworkAutomation.dll) Version: 10.2.1+e3fd5885edfa7211ba46258e0eed5ac221a54381
Syntax
IList<Clamping> Clampings { get; }

Return Value

IListClamping

JavaScript
// How to iterate over a collection of clampings
for (var index = 0; index < Job.Clampings.Count; index++) {
    var clamp = Job.Clampings[index];
    //...
}

See Also