Click or drag to resize

JobClampings Property

Returns the collection of the Clamping objects associated with the job.

Namespace: Woodwork.Automation
Assembly: WoodworkAutomation (in WoodworkAutomation.dll) Version: 2.1.25
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