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: 14.5.1+cea593b982d79fcd8924a2e3fdf7aefc7fb02118
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