GroupLayerCreateOptions

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

const options = { name: "myGroup", opacity: 50 };
await require('photoshop').app.activeDocument.createLayerGroup(options);
Name
Type
Default
Min Version
Description
blendMode
BlendMode
NORMAL
22.5
Blend mode of the newly created layer or group.
color
LabelColors
NONE
22.5
Label color of the newly created layer or group.
fromLayers
Layer | Layer[]
-
22.5
Layer(s) to populate the newly created group.
group
boolean
false
22.5
Whether to use previous layer to create clipping mask.
mode
BlendMode
NORMAL
22.5
Deprecated, please use `blendMode` above as it will override this value.
name
string
-
22.5
Name of the newly created layer group. If no value is provided, then a name will be generated following the template, "Group #".
opacity
number
100
22.5
Opacity of the newly created layer or group.