ActionScript® 3.0 Reference for the Adobe® Flash® Platform
Home  |  Show Packages and Classes List |  Packages  |  Classes  |  What's New  |  Index  |  Appendixes
flash.display 

BitmapDataChannel  - AS3

Packageflash.display
Classpublic final class BitmapDataChannel
InheritanceBitmapDataChannel Inheritance Object

Language Version: ActionScript 3.0
Runtime Versions: AIR 1.0, Flash Player 9, Flash Lite 4

The BitmapDataChannel class is an enumeration of constant values that indicate which channel to use: red, blue, green, or alpha transparency.

When you call some methods, you can use the bitwise OR operator (|) to combine BitmapDataChannel constants to indicate multiple color channels.

The BitmapDataChannel constants are provided for use as values in the following:

  • The sourceChannel and destChannel parameters of the flash.display.BitmapData.copyChannel() method
  • The channelOptions parameter of the flash.display.BitmapData.noise() method
  • The flash.filters.DisplacementMapFilter.componentX and flash.filters.DisplacementMapFilter.componentY properties

Related API Elements



Public Properties
 PropertyDefined By
 Inheritedconstructor : Object
A reference to the class object or constructor function for a given object instance.
Object
Public Methods
 MethodDefined By
 Inherited
Indicates whether an object has a specified property defined.
Object
 Inherited
Indicates whether an instance of the Object class is in the prototype chain of the object specified as the parameter.
Object
 Inherited
Indicates whether the specified property exists and is enumerable.
Object
 Inherited
Sets the availability of a dynamic property for loop operations.
Object
 Inherited
Returns the string representation of this object, formatted according to locale-specific conventions.
Object
 Inherited
Returns the string representation of the specified object.
Object
 Inherited
Returns the primitive value of the specified object.
Object
Public Constants
 ConstantDefined By
  ALPHA : uint = 8
[static] The alpha channel.
BitmapDataChannel
  BLUE : uint = 4
[static] The blue channel.
BitmapDataChannel
  GREEN : uint = 2
[static] The green channel.
BitmapDataChannel
  RED : uint = 1
[static] The red channel.
BitmapDataChannel
Constant Detail

ALPHA

Constant
public static const ALPHA:uint = 8

Language Version: ActionScript 3.0
Runtime Versions: AIR 1.0, Flash Player 9, Flash Lite 4

The alpha channel.

BLUE

Constant 
public static const BLUE:uint = 4

Language Version: ActionScript 3.0
Runtime Versions: AIR 1.0, Flash Player 9, Flash Lite 4

The blue channel.

GREEN

Constant 
public static const GREEN:uint = 2

Language Version: ActionScript 3.0
Runtime Versions: AIR 1.0, Flash Player 9, Flash Lite 4

The green channel.

RED

Constant 
public static const RED:uint = 1

Language Version: ActionScript 3.0
Runtime Versions: AIR 1.0, Flash Player 9, Flash Lite 4

The red channel.