패키지 | mx.geom |
클래스 | public class RoundedRectangle |
상속 | RoundedRectangle Rectangle Object |
언어 버전: | ActionScript 3.0 |
제품 버전: | Flex 3 |
런타임 버전: | Flash Player 9, AIR 1.1 |
공용 속성
속성 | 정의 주체 | ||
---|---|---|---|
bottom : Number
y 및 height 속성의 합입니다. | Rectangle | ||
bottomRight : Point
right 및 bottom 속성 값으로 결정되는 Rectangle 객체의 오른쪽 아래 모서리 위치입니다. | Rectangle | ||
constructor : Object
지정된 객체 인스턴스의 클래스 객체 또는 생성자 함수에 대한 참조입니다. | Object | ||
cornerRadius : Number = 0
The radius of each corner (in pixels). | RoundedRectangle | ||
height : Number
사각형의 높이(픽셀 단위)입니다. | Rectangle | ||
left : Number
사각형 왼쪽 위 모서리의 x 좌표입니다. | Rectangle | ||
right : Number
x 및 width 속성의 합입니다. | Rectangle | ||
size : Point
Rectangle 객체의 크기로, width 및 height 속성 값을 가진 Point 객체로 표현됩니다. | Rectangle | ||
top : Number
사각형 왼쪽 위 모서리의 y 좌표입니다. | Rectangle | ||
topLeft : Point
꼭지점의 x 및 y 좌표로 결정되는 Rectangle 객체의 왼쪽 위 모서리 위치입니다. | Rectangle | ||
width : Number
사각형의 폭(픽셀 단위)입니다. | Rectangle | ||
x : Number
사각형 왼쪽 위 모서리의 x 좌표입니다. | Rectangle | ||
y : Number
사각형 왼쪽 위 모서리의 y 좌표입니다. | Rectangle |
공용 메서드
메서드 | 정의 주체 | ||
---|---|---|---|
RoundedRectangle(x:Number = 0, y:Number = 0, width:Number = 0, height:Number = 0, cornerRadius:Number = 0)
Constructor. | RoundedRectangle | ||
x, y, width 및 height 속성 값이 원본 Rectangle 객체와 같은 새 Rectangle 객체를 반환합니다. | Rectangle | ||
지정된 점이 이 Rectangle 객체에 의해 정의된 사각형 영역 내에 포함되는지 결정합니다. | Rectangle | ||
지정된 점이 이 Rectangle 객체에 의해 정의된 사각형 영역 내에 포함되는지 결정합니다. | Rectangle | ||
rect 매개 변수에 의해 지정된 Rectangle 객체가 이 Rectangle 객체 내에 포함되는지 결정합니다. | Rectangle | ||
소스 Rectangle 객체의 모든 사각형 데이터를 호출 Rectangle 객체에 복사합니다. | Rectangle | ||
toCompare 매개 변수에 지정된 객체가 이 Rectangle 객체와 같은지 결정합니다. | Rectangle | ||
지정된 속성이 객체에 정의되어 있는지 여부를 나타냅니다. | Object | ||
Rectangle 객체의 크기를 지정된 크기(픽셀 단위)만큼 늘립니다. | Rectangle | ||
Rectangle 객체의 크기를 늘립니다. | Rectangle | ||
toIntersect 매개 변수에 지정된 Rectangle 객체가 이 Rectangle 객체와 교차하는 경우, 교차 영역을 Rectangle 객체로 반환합니다. | Rectangle | ||
toIntersect 매개 변수에 지정된 객체가 이 Rectangle 객체와 교차하는지 결정합니다. | Rectangle | ||
이 Rectangle 객체가 비었는지 여부를 결정합니다. | Rectangle | ||
Object 클래스의 인스턴스가 매개 변수로 지정된 객체의 프로토타입 체인에 있는지 여부를 나타냅니다. | Object | ||
왼쪽 위 꼭지점에 의해 정해진 Rectangle 객체의 위치를 지정된 양만큼 조정합니다. | Rectangle | ||
Point 객체를 매개 변수로 사용하여 Rectangle 객체의 위치를 조정합니다. | Rectangle | ||
지정된 속성이 존재하고 열거 가능한지 여부를 나타냅니다. | Object | ||
Rectangle 객체의 모든 속성을 0으로 설정합니다. | Rectangle | ||
루프 작업에서 동적 속성을 사용할 수 있는지 여부를 설정합니다. | Object | ||
Rectangle의 멤버를 지정된 값으로 설정합니다.
| Rectangle | ||
로캘별 규칙에 따라 서식이 지정된 이 객체의 문자열 표현을 반환합니다. | Object | ||
Rectangle 객체의 가로 및 세로 위치와 폭 및 높이를 나열하는 문자열을 구성하고 반환합니다. | Rectangle | ||
두 사각형을 추가하고 두 사각형 사이의 가로 및 세로 공간을 채워넣어 새 Rectangle 객체를 만듭니다. | Rectangle | ||
지정된 객체의 프리미티브 값을 반환합니다. | Object |
속성 세부 정보
cornerRadius | 속성 |
public var cornerRadius:Number = 0
언어 버전: | ActionScript 3.0 |
제품 버전: | Flex 3 |
런타임 버전: | Flash Player 9, AIR 1.1 |
The radius of each corner (in pixels).
기본값: 0.
생성자 세부 정보
RoundedRectangle | () | 생성자 |
public function RoundedRectangle(x:Number = 0, y:Number = 0, width:Number = 0, height:Number = 0, cornerRadius:Number = 0)
언어 버전: | ActionScript 3.0 |
제품 버전: | Flex 3 |
런타임 버전: | Flash Player 9, AIR 1.1 |
Constructor.
매개 변수x:Number (default = 0 ) — The x coordinate of the top-left corner of the rectangle.
| |
y:Number (default = 0 ) — The y coordinate of the top-left corner of the rectangle.
| |
width:Number (default = 0 ) — The width of the rectangle, in pixels.
| |
height:Number (default = 0 ) — The height of the rectangle, in pixels.
| |
cornerRadius:Number (default = 0 ) — The radius of each corner, in pixels.
|
Tue Jun 12 2018, 03:17 PM Z