Returns object which provides access to various operations with bitmap channels.

Namespace: Aurigma.GraphicsMill
Assembly:   Aurigma.GraphicsMill (in Aurigma.GraphicsMill.dll)

Syntax

Visual Basic (Declaration)
Public ReadOnly Property Channels As ChannelsProvider
C#
public ChannelsProvider Channels { get; }
Visual C++
public:
property ChannelsProvider^ Channels {
	ChannelsProvider^ get ();
}

Property Value

ChannelsProvider object containing methods which allow operating bitmap channels.

Examples

 Copy imageCopy Code
bitmap.Channels.AddAlpha(0.4F)
 Copy imageCopy Code
bitmap.Channels.AddAlpha(0.4f);

See Also