Documentation
    Preparing search index...

    Represents a node of ProcessType sheet

    interface ProcessRepContentSheet {
        consumptions: number[];
        dimX: undefined | number;
        dimY: undefined | number;
        grossConsumption: undefined | number;
        nestingMode: undefined | GraphRepNestingMode;
        nestings: SheetNesting[];
        netConsumption: undefined | number;
        sheetId: undefined | string;
        sheetIds: string[];
        sheetThickness: number;
        testReportRequired: undefined | boolean;
    }
    Index

    Properties

    consumptions: number[]

    Gross consumption for the sheets defined in sheetIds respectively; empty if nesting was unsuccessful

    Legacy property; corresponds to grossConsumption.

    dimX: undefined | number

    X-dimension of the associated sheet

    Undefined in case nesting was unsuccessful.

    dimY: undefined | number

    Y-dimension of the associated sheet

    Undefined in case nesting was unsuccessful.

    grossConsumption: undefined | number

    Gross consumption in multiples of the sheet.

    This value includes the scrap.

    nestingMode: undefined | GraphRepNestingMode

    Mode of the underlying nesting

    Undefined if there is no underlying nesting.

    nestings: SheetNesting[]

    The underlying nestings

    netConsumption: undefined | number

    Net consumption in multiples of the sheet.

    This value does not include the scrap.

    sheetId: undefined | string

    ID of the underlying sheet

    Undefined if there is no associated sheet.

    sheetIds: string[]

    Identifiers of sheets that are part of the nesting; empty if nesting was unsuccessful

    Legacy property; corresponds to sheetId.

    sheetThickness: number

    Thickness of the associated sheets

    testReportRequired: undefined | boolean

    If a test report is required

    Note: Property is only provided if the respective setting is enabled.