mx.utils
public class GraphicsUtil
继承GraphicsUtil Inheritance Object

Graphics 类是实用程序方法与 Graphics 类相关的全静态类。不创建 GraphicsUtil 实例;只是调用如 GraphicsUtil.drawRoundRectComplex() 之类的方法。



公共属性
 属性定义方
 Inheritedconstructor : Object
对类对象或给定对象实例的构造函数的引用。
Object
 Inheritedprototype : Object
[静态] 对类或函数对象的原型对象的引用。
Object
公共方法
 方法定义方
  
drawRoundRectComplex(graphics:Graphics, x:Number, y:Number, width:Number, height:Number, topLeftRadius:Number, topRightRadius:Number, bottomLeftRadius:Number, bottomRightRadius:Number):void
[静态] 使用绘制圆角的半径大小来绘制圆角矩形。
GraphicsUtil
 Inherited
指示对象是否已经定义了指定的属性。
Object
 Inherited
指示 Object 类的实例是否在指定为参数的对象的原型链中。
Object
 Inherited
指示指定的属性是否存在、是否可枚举。
Object
 Inherited
设置循环操作动态属性的可用性。
Object
 Inherited
返回指定对象的字符串表示形式。
Object
 Inherited
返回指定对象的原始值。
Object
方法详细信息
drawRoundRectComplex()方法
public static function drawRoundRectComplex(graphics:Graphics, x:Number, y:Number, width:Number, height:Number, topLeftRadius:Number, topRightRadius:Number, bottomLeftRadius:Number, bottomRightRadius:Number):void

使用绘制圆角的半径大小来绘制圆角矩形。必须在调用 drawRoundRectComplex() 方法之前通过调用 linestyle()lineGradientStyle()beginFill()beginGradientFill()beginBitmapFill() 来设置 Graphics 对象上的线条样式、填充,或同时设置二者。

参数

graphics:Graphics — 绘制圆角矩形的 Graphics 对象。
 
x:Number — 相对于父显示对象注册点的水平位置(以像素为单位)。
 
y:Number — 相对于父显示对象注册点的垂直位置(以像素为单位)。
 
width:Number — 圆角矩形的宽度(以像素为单位)。
 
height:Number — 圆角矩形的高度(以像素为单位)。
 
topLeftRadius:Number — 左上角的半径(以像素为单位)。
 
topRightRadius:Number — 右上角的半径(以像素为单位)。
 
bottomLeftRadius:Number — 左下角的半径(以像素为单位)。
 
bottomRightRadius:Number — 右下角的半径(以像素为单位)。