| Package | jp.nium.display |
| Class | public class ExBitmap |
| Inheritance | ExBitmap flash.display.Bitmap |
| Implements | IDisplayObject, IIdGroup, jp.nium.core.impls.IExDisplayObject |
| Subclasses | CastBitmap |
// ExBitmap インスタンスを作成する var bmp:ExBitmap = new ExBitmap();
See also
| Property | Defined by | ||
|---|---|---|---|
| className : String [read-only]
インスタンスのクラス名を取得します。
Indicates the instance className of the IExDisplayObject.
| ExBitmap | ||
| group : String
インスタンスのグループ名を取得または設定します。
Indicates the instance group of the IExDisplayObject.
| ExBitmap | ||
| id : String
インスタンスの識別子を取得または設定します。
Indicates the instance id of the IExDisplayObject.
| ExBitmap | ||
| Method | Defined by | ||
|---|---|---|---|
|
ExBitmap(bitmapData:BitmapData = null, pixelSnapping:String = "auto", smoothing:Boolean = false, initObject:Object = null)
新しい ExBitmap インスタンスを作成します。
Creates a new ExBitmap object.
| ExBitmap | ||
|
setProperties(parameters:Object):DisplayObject
インスタンスに対して、複数のプロパティを一括設定します。
Setup the several instance properties.
| ExBitmap | ||
|
toString():String
指定されたオブジェクトのストリング表現を返します。
Returns the string representation of the specified object.
| ExBitmap | ||
| className | property |
className:String [read-only]インスタンスのクラス名を取得します。 Indicates the instance className of the IExDisplayObject.
Implementation public function get className():String
| group | property |
group:String [read-write]インスタンスのグループ名を取得または設定します。 Indicates the instance group of the IExDisplayObject.
Implementation public function get group():String
public function set group(value:String):void
See also
| id | property |
id:String [read-write]インスタンスの識別子を取得または設定します。 Indicates the instance id of the IExDisplayObject.
Implementation public function get id():String
public function set id(value:String):void
See also
| ExBitmap | () | constructor |
public function ExBitmap(bitmapData:BitmapData = null, pixelSnapping:String = "auto", smoothing:Boolean = false, initObject:Object = null)新しい ExBitmap インスタンスを作成します。 Creates a new ExBitmap object.
ParametersbitmapData:BitmapData (default = null) — BitmapData オブジェクトが参照されます。
The BitmapData object being referenced.
|
|
pixelSnapping:String (default = "auto") — Bitmap オブジェクトが最も近いピクセルに吸着されるかどうかを示します。
Whether or not the Bitmap object is snapped to the nearest pixel.
|
|
smoothing:Boolean (default = false) — ビットマップを拡大 / 縮小するときにスムージングするかどうかを示します。
Whether or not the bitmap is smoothed when scaled.
|
|
initObject:Object (default = null) — 設定したいプロパティを含んだオブジェクトです。
|
| setProperties | () | method |
public function setProperties(parameters:Object):DisplayObjectインスタンスに対して、複数のプロパティを一括設定します。 Setup the several instance properties.
Parametersparameters:Object — 設定したいプロパティを含んだオブジェクトです。
The object that contains the property to setup.
|
DisplayObject — 自身の参照です。
|
| toString | () | method |
public override function toString():String指定されたオブジェクトのストリング表現を返します。 Returns the string representation of the specified object.
ReturnsString — オブジェクトのストリング表現です。
A string representation of the object.
|