Class Group
- Namespace
- Olve.OpenRaster
- Assembly
- Olve.OpenRaster.dll
A group of layers, also known as a stack element. See OpenRaster Stack Element.
public class Group
- Inheritance
-
Group
- Inherited Members
Properties
CompositeOperation
The composite operation of the group.
public CompositeOperation CompositeOperation { get; set; }
Property Value
Layers
The layers belonging to the group.
public IList<Layer> Layers { get; set; }
Property Value
Name
The name of the group.
public required string Name { get; set; }
Property Value
Opacity
The opacity of the group (0.0 = fully transparent, 1.0 = fully opaque). Defaults to 1.0.
public float Opacity { get; set; }
Property Value
Visibility
The visibility of the group. Defaults to Visible.
public Visibility Visibility { get; set; }
Property Value
X
The X position of the group.
[Obsolete("Deprecated since version 0.0.6: x and y attributes on stack elements are no longer allowed.")]
public int X { get; set; }
Property Value
Y
The Y position of the group.
[Obsolete("Deprecated since version 0.0.6: x and y attributes on stack elements are no longer allowed.")]
public int Y { get; set; }