パッケージflash.geom
public class Transform
継承Transform Inheritance Object

Transform クラスは、表示オブジェクトに適用されるカラー変換と座標変換に関するデータを収集します。変換を適用するには、新しい Matrix および新しい ColorTransform を作成し、表示オブジェクトの transform プロパティの適切なプロパティを設定します。

関連項目

flash.display.DisplayObject.transform
flash.geom.ColorTransform
flash.geom.Matrix


パブリックプロパティ
 プロパティ定義
  colorTransform : ColorTransform
表示オブジェクトのカラーを全体的に調整する値を格納している ColorTransform オブジェクトです。
Transform
  concatenatedColorTransform : ColorTransform
[read-only] この表示オブジェクトおよびルートレベルまでのすべての親オブジェクトに適用される、結合されたカラー変換を表す ColorTransform オブジェクトです。
Transform
  concatenatedMatrix : Matrix
[read-only] この表示オブジェクトおよびルートレベルまでのそのすべての親オブジェクトに結合された変換行列を表す Matrix オブジェクトです。
Transform
 Inheritedconstructor : Object
指定されたオブジェクトインスタンスのクラスオブジェクトまたはコンストラクタ関数への参照です。
Object
  matrix : Matrix
表示オブジェクトの拡大・縮小、回転、および変換に影響を与える値を格納している Matrix オブジェクトです。
Transform
  pixelBounds : Rectangle
[read-only] ステージ上の表示オブジェクトの境界を示す矩形を定義する Rectangle オブジェクトです。
Transform
 Inheritedprototype : Object
[static] クラスまたは関数オブジェクトのプロトタイプオブジェクトへの参照です。
Object
パブリック Methods
 メソッド定義
 Inherited
指定されたプロパティがオブジェクトに定義されているかどうかを示します。
Object
 Inherited
Object クラスのインスタンスが、パラメータとして指定されたオブジェクトのプロトタイプチェーン内にあるかどうかを示します。
Object
 Inherited
指定されたプロパティが存在し、列挙できるかどうかを示します。
Object
 Inherited
ループ処理に対するダイナミックプロパティの可用性を設定します。
Object
 Inherited
指定されたオブジェクトのストリング表現を返します。
Object
 Inherited
指定されたオブジェクトのプリミティブな値を返します。
Object
プロパティの詳細
colorTransformプロパティ
colorTransform:ColorTransform  [read-write]

表示オブジェクトのカラーを全体的に調整する値を格納している ColorTransform オブジェクトです。

実装
    public function get colorTransform():ColorTransform
    public function set colorTransform(value:ColorTransform):void

Throws
TypeError — ColorTransform は、設定時に null に設定されます。

関連項目

concatenatedColorTransformプロパティ 
concatenatedColorTransform:ColorTransform  [read-only]

この表示オブジェクトおよびルートレベルまでのすべての親オブジェクトに適用される、結合されたカラー変換を表す ColorTransform オブジェクトです。異なるレベルで異なるカラー変換を適用した場合、すべての変換が連結されて、このプロパティ用の 1 つの ColorTransform オブジェクトになります。

実装
    public function get concatenatedColorTransform():ColorTransform

関連項目

concatenatedMatrixプロパティ 
concatenatedMatrix:Matrix  [read-only]

この表示オブジェクトおよびルートレベルまでのそのすべての親オブジェクトに結合された変換行列を表す Matrix オブジェクトです。異なるレベルで異なる変換行列を適用した場合、すべての行列が連結されて、このプロパティ用の 1 つの行列になります。

実装
    public function get concatenatedMatrix():Matrix
matrixプロパティ 
matrix:Matrix  [read-write]

表示オブジェクトの拡大・縮小、回転、および変換に影響を与える値を格納している Matrix オブジェクトです。

実装
    public function get matrix():Matrix
    public function set matrix(value:Matrix):void

Throws
TypeError — 行列は、設定時に null に設定されます。

関連項目

pixelBoundsプロパティ 
pixelBounds:Rectangle  [read-only]

ステージ上の表示オブジェクトの境界を示す矩形を定義する Rectangle オブジェクトです。

実装
    public function get pixelBounds():Rectangle