Packagejp.nium.display
Classpublic class ExBitmap
InheritanceExBitmap Inheritance flash.display.Bitmap
ImplementsIDisplayObject, IIdGroup, jp.nium.core.impls.IExDisplayObject
SubclassesCastBitmap

ExBitmap クラスは、Bitmap クラスの基本機能を拡張した jp.nium パッケージで使用される基本的な表示オブジェクトクラスです。 The ExBitmap class is a basic display object class used in the jp.nium package which extends the basic function of the Bitmap class.


Example
  // ExBitmap インスタンスを作成する
  var bmp:ExBitmap = new ExBitmap();
  

See also

jp.nium.display.getInstanceById()
jp.nium.display.getInstancesByGroup()


Public Properties
 PropertyDefined 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
Public Methods
 MethodDefined 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
Property detail
classNameproperty
className:String  [read-only]

インスタンスのクラス名を取得します。 Indicates the instance className of the IExDisplayObject.

Implementation
    public function get className():String
groupproperty 
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

idproperty 
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

Constructor detail
ExBitmap()constructor
public function ExBitmap(bitmapData:BitmapData = null, pixelSnapping:String = "auto", smoothing:Boolean = false, initObject:Object = null)

新しい ExBitmap インスタンスを作成します。 Creates a new ExBitmap object.

Parameters
bitmapData: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)設定したいプロパティを含んだオブジェクトです。
Method detail
setProperties()method
public function setProperties(parameters:Object):DisplayObject

インスタンスに対して、複数のプロパティを一括設定します。 Setup the several instance properties.

Parameters
parameters:Object設定したいプロパティを含んだオブジェクトです。 The object that contains the property to setup.

Returns
DisplayObject自身の参照です。
toString()method 
public override function toString():String

指定されたオブジェクトのストリング表現を返します。 Returns the string representation of the specified object.

Returns
Stringオブジェクトのストリング表現です。 A string representation of the object.