UXP Toolkit
    Preparing search index...

    Interface LayerCompRecaptureOptions

    An object literal can be constructed with any of the following properties and passed to LayerComp.recapture. As a type, LayerCompRecaptureOptions can be used in Typescript development.

    const options = { visibility: true, position: true };
    await require('photoshop').app.activeDocument.layerComps.add(options);

    objects/options

    24.0

    interface LayerCompRecaptureOptions {
        appearance?: boolean;
        childComp?: boolean;
        position?: boolean;
        visibility?: boolean;
    }
    Index

    Properties

    appearance?: boolean

    Update the recorded state of the layers' effects.

    false
    

    24.0

    childComp?: boolean

    Update the recorded state of any Layer Comps contained in the recorded layers' Smart Objects.

    false
    

    24.0

    position?: boolean

    Update the recorded state of the layers' position.

    false
    

    24.0

    visibility?: boolean

    Update the recorded state of the layers' visibility.

    false
    

    24.0