| 패키지 | mx.graphics | 
| 클래스 | public class BitmapFill | 
| 상속 | BitmapFill    EventDispatcher   Object | 
| 구현 | IFill | 
| 언어 버전: | ActionScript 3.0 | 
| 제품 버전: | Flex 3 | 
| 런타임 버전: | Flash Player 9, AIR 1.1 | 
기타 예제
관련 API 요소
| 속성 | 정의 주체 | ||
|---|---|---|---|
| alpha : Number 
      The transparency of a fill.  | BitmapFill | ||
![]()  | constructor : Object 
	 지정된 객체 인스턴스의 클래스 객체 또는 생성자 함수에 대한 참조입니다.  | Object | |
| fillMode : String 
      Determines how the bitmap fills in the dimensions.  | BitmapFill | ||
| matrix : Matrix 
      An array of values used for matrix transformation.  | BitmapFill | ||
| offsetX : Number  버전부터 사용되지 않음 4.0: 사용 x 
      How far the bitmap is horizontally offset from the origin. | BitmapFill | ||
| offsetY : Number  버전부터 사용되지 않음 4.0: 사용 y 
      How far the bitmap is vertically offset from the origin. | BitmapFill | ||
| originX : Number  버전부터 사용되지 않음 4.0: 사용 transformX 
      The horizontal origin for the bitmap fill. | BitmapFill | ||
| originY : Number  버전부터 사용되지 않음 4.0: 사용 transformY 
      The vertical origin for the bitmap fill. | BitmapFill | ||
| repeat : Boolean  버전부터 사용되지 않음 4.0: 사용 fillMode 
      Whether the bitmap is repeated to fill the area. | BitmapFill | ||
| rotation : Number 
      The number of degrees to rotate the bitmap.  | BitmapFill | ||
| scaleX : Number 
      The percent to horizontally scale the bitmap when filling,
      from 0.0 to 1.0.  | BitmapFill | ||
| scaleY : Number 
      The percent to vertically scale the bitmap when filling,
      from 0.0 to 1.0.  | BitmapFill | ||
| smooth : Boolean 
      A flag indicating whether to smooth the bitmap data
      when filling with it.  | BitmapFill | ||
| source : Object 
      The source used for the bitmap fill.  | BitmapFill | ||
| transformX : Number 
      The x position transform point of the fill.  | BitmapFill | ||
| transformY : Number 
      The y position transform point of the fill.  | BitmapFill | ||
| x : Number 
      The distance by which to translate each point along the x axis.  | BitmapFill | ||
| y : Number 
      The distance by which to translate each point along the y axis.  | BitmapFill | ||
| 속성 | 정의 주체 | ||
|---|---|---|---|
| compoundTransform : mx.geom:CompoundTransform 
      Holds the matrix and the convenience transform properties (x, y, and rotation).  | BitmapFill | ||
| 메서드 | 정의 주체 | ||
|---|---|---|---|
      Constructor.  | BitmapFill | ||
![]()  | addEventListener(type:String, listener:Function, useCapture:Boolean = false, priority:int = 0, useWeakReference:Boolean = false):void 
	리스너에서 이벤트 알림을 받을 수 있도록 EventDispatcher 객체에 이벤트 리스너 객체를 등록합니다.  | EventDispatcher | |
![]()  | 
	이벤트를 이벤트 흐름으로 전달합니다.  | EventDispatcher | |
![]()  | 
	EventDispatcher 객체에 특정 유형의 이벤트에 대한 리스너가 등록되어 있는지 여부를 확인합니다.  | EventDispatcher | |
![]()  | 
	 지정된 속성이 객체에 정의되어 있는지 여부를 나타냅니다.  | Object | |
![]()  | 
	 Object 클래스의 인스턴스가 매개 변수로 지정된 객체의 프로토타입 체인에 있는지 여부를 나타냅니다.  | Object | |
![]()  | 
	 지정된 속성이 존재하고 열거 가능한지 여부를 나타냅니다.  | Object | |
![]()  | 
	EventDispatcher 객체에서 리스너를 제거합니다.  | EventDispatcher | |
![]()  | 
     루프 작업에서 동적 속성을 사용할 수 있는지 여부를 설정합니다.  | Object | |
![]()  | 
	 로캘별 규칙에 따라 서식이 지정된 이 객체의 문자열 표현을 반환합니다.  | Object | |
![]()  | 
	 지정된 객체의 문자열 표현을 반환합니다.  | Object | |
![]()  | 
	 지정된 객체의 프리미티브 값을 반환합니다.  | Object | |
![]()  | 
	이 EventDispatcher 객체 또는 조상 객체에 지정한 이벤트 유형에 대한 이벤트 리스너가 등록되어 있는지 여부를 확인합니다.  | EventDispatcher | |
alpha | 속성 | 
compoundTransform | 속성 | 
protected var compoundTransform:mx.geom:CompoundTransform| 언어 버전: | ActionScript 3.0 | 
| 제품 버전: | Flex 3 | 
| 런타임 버전: | Flash Player 9, AIR 1.1 | 
      Holds the matrix and the convenience transform properties (x, y, and rotation).
      The compoundTransform is only created when the matrix property is set. 
      
      
fillMode | 속성 | 
fillMode:String| 언어 버전: | ActionScript 3.0 | 
| 제품 버전: | Flex 4 | 
| 런타임 버전: | Flash Player 10, AIR 1.5 | 
      Determines how the bitmap fills in the dimensions. If you set the value
      of this property in a tag, use the string (such as "repeat"). If you set the value of 
      this property in ActionScript, use the constant (such as BitmapFillMode.CLIP).
     
      When set to BitmapFillMode.CLIP ("clip"), the bitmap
      ends at the edge of the region.
     
      When set to BitmapFillMode.REPEAT ("repeat"), the bitmap 
      repeats to fill the region.
     
      When set to BitmapFillMode.SCALE ("scale"), the bitmap
      stretches to fill the region.
     
      
 기본값: BitmapFillMode.SCALE.
구현
    public function get fillMode():String    public function set fillMode(value:String):voidmatrix | 속성 | 
offsetX | 속성 | 
offsetX:Number| 언어 버전: | ActionScript 3.0 | 
| 제품 버전: | Flex 3 | 
| 런타임 버전: | Flash Player 9, AIR 1.1 | 
How far the bitmap is horizontally offset from the origin. This adjustment is performed after rotation and scaling.
 기본값: 0.
이 속성은 데이터 바인딩에 대한 소스로 사용할 수 있습니다. 이 속성을 수정하면  propertyChange  이벤트를 전달합니다.
구현
    public function get offsetX():Number    public function set offsetX(value:Number):voidoffsetY | 속성 | 
offsetY:Number| 언어 버전: | ActionScript 3.0 | 
| 제품 버전: | Flex 3 | 
| 런타임 버전: | Flash Player 9, AIR 1.1 | 
How far the bitmap is vertically offset from the origin. This adjustment is performed after rotation and scaling.
 기본값: 0.
이 속성은 데이터 바인딩에 대한 소스로 사용할 수 있습니다. 이 속성을 수정하면  propertyChange  이벤트를 전달합니다.
구현
    public function get offsetY():Number    public function set offsetY(value:Number):voidoriginX | 속성 | 
originX:Number| 언어 버전: | ActionScript 3.0 | 
| 제품 버전: | Flex 3 | 
| 런타임 버전: | Flash Player 9, AIR 1.1 | 
The horizontal origin for the bitmap fill. The bitmap fill is offset so that this point appears at the origin. Scaling and rotation of the bitmap are performed around this point.
 기본값: 0.
이 속성은 데이터 바인딩에 대한 소스로 사용할 수 있습니다. 이 속성을 수정하면  propertyChange  이벤트를 전달합니다.
구현
    public function get originX():Number    public function set originX(value:Number):voidoriginY | 속성 | 
originY:Number| 언어 버전: | ActionScript 3.0 | 
| 제품 버전: | Flex 3 | 
| 런타임 버전: | Flash Player 9, AIR 1.1 | 
The vertical origin for the bitmap fill. The bitmap fill is offset so that this point appears at the origin. Scaling and rotation of the bitmap are performed around this point.
 기본값: 0.
이 속성은 데이터 바인딩에 대한 소스로 사용할 수 있습니다. 이 속성을 수정하면  propertyChange  이벤트를 전달합니다.
구현
    public function get originY():Number    public function set originY(value:Number):voidrepeat | 속성 | 
repeat:Boolean| 언어 버전: | ActionScript 3.0 | 
| 제품 버전: | Flex 3 | 
| 런타임 버전: | Flash Player 9, AIR 1.1 | 
      Whether the bitmap is repeated to fill the area.
      Set to true to cause the fill to tile outward
      to the edges of the filled region.
      Set to false to end the fill at the edge of the region.
     
      
 기본값: true.
이 속성은 데이터 바인딩에 대한 소스로 사용할 수 있습니다. 이 속성을 수정하면  propertyChange  이벤트를 전달합니다.
구현
    public function get repeat():Boolean    public function set repeat(value:Boolean):voidrotation | 속성 | 
rotation:Number| 언어 버전: | ActionScript 3.0 | 
| 제품 버전: | Flex 3 | 
| 런타임 버전: | Flash Player 9, AIR 1.1 | 
The number of degrees to rotate the bitmap. Valid values range from 0.0 to 360.0.
 기본값: 0.
이 속성은 데이터 바인딩에 대한 소스로 사용할 수 있습니다. 이 속성을 수정하면  propertyChange  이벤트를 전달합니다.
구현
    public function get rotation():Number    public function set rotation(value:Number):voidscaleX | 속성 | 
scaleX:Number| 언어 버전: | ActionScript 3.0 | 
| 제품 버전: | Flex 3 | 
| 런타임 버전: | Flash Player 9, AIR 1.1 | 
The percent to horizontally scale the bitmap when filling, from 0.0 to 1.0. If 1.0, the bitmap is filled at its natural size.
이 속성은 데이터 바인딩에 대한 소스로 사용할 수 있습니다. 이 속성을 수정하면  propertyChange  이벤트를 전달합니다.
구현
    public function get scaleX():Number    public function set scaleX(value:Number):voidscaleY | 속성 | 
scaleY:Number| 언어 버전: | ActionScript 3.0 | 
| 제품 버전: | Flex 3 | 
| 런타임 버전: | Flash Player 9, AIR 1.1 | 
The percent to vertically scale the bitmap when filling, from 0.0 to 1.0. If 1.0, the bitmap is filled at its natural size.
이 속성은 데이터 바인딩에 대한 소스로 사용할 수 있습니다. 이 속성을 수정하면  propertyChange  이벤트를 전달합니다.
구현
    public function get scaleY():Number    public function set scaleY(value:Number):voidsmooth | 속성 | 
smooth:Boolean| 언어 버전: | ActionScript 3.0 | 
| 제품 버전: | Flex 3 | 
| 런타임 버전: | Flash Player 9, AIR 1.1 | 
A flag indicating whether to smooth the bitmap data when filling with it.
 기본값: false.
이 속성은 데이터 바인딩에 대한 소스로 사용할 수 있습니다. 이 속성을 수정하면  propertyChange  이벤트를 전달합니다.
구현
    public function get smooth():Boolean    public function set smooth(value:Boolean):voidsource | 속성 | 
source:Object| 언어 버전: | ActionScript 3.0 | 
| 제품 버전: | Flex 3 | 
| 런타임 버전: | Flash Player 9, AIR 1.1 | 
The source used for the bitmap fill. The fill can render from various graphical sources, including the following:
- A Bitmap or BitmapData instance.
 - A class representing a subclass of DisplayObject. The BitmapFill instantiates the class and creates a bitmap rendering of it.
 - An instance of a DisplayObject. The BitmapFill copies it into a Bitmap for filling.
 
 기본값: null.
구현
    public function get source():Object    public function set source(value:Object):voidtransformX | 속성 | 
transformY | 속성 | 
x | 속성 | 
y | 속성 | 
BitmapFill | () | 생성자 | 
public function BitmapFill()| 언어 버전: | ActionScript 3.0 | 
| 제품 버전: | Flex 3 | 
| 런타임 버전: | Flash Player 9, AIR 1.1 | 
Constructor.
Tue Jun 12 2018, 03:17 PM Z
 
 상속되는 공용 속성 숨기기
 상속되는 공용 속성 표시