Table of Contents

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

CompositeOperation

Layers

The layers belonging to the group.

public IList<Layer> Layers { get; set; }

Property Value

IList<Layer>

Name

The name of the group.

public required string Name { get; set; }

Property Value

string

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

float

Visibility

The visibility of the group. Defaults to Visible.

public Visibility Visibility { get; set; }

Property Value

Visibility

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

int

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; }

Property Value

int