| Package | org.aswing.resizer |
| Interface | public interface Resizer |
| Implementors | DefaultResizer |
| Method | Defined by | ||
|---|---|---|---|
|
isEnabled():Boolean
Returns whether this resizer is enabled.
| Resizer | ||
|
isResizeDirectly():Boolean
Returns whether need resize component directly when drag the resizer arrow.
| Resizer | ||
|
setEnabled(b:Boolean):void
Sets the resizer to enabled or not.
| Resizer | ||
|
Sets the owner of this resizer.
| Resizer | ||
|
setResizeDirectly(r:Boolean):void
Indicate whether need resize component directly when drag the resizer arrow. | Resizer | ||
| isEnabled | () | method |
public function isEnabled():BooleanReturns whether this resizer is enabled.
ReturnsBoolean |
| isResizeDirectly | () | method |
public function isResizeDirectly():BooleanReturns whether need resize component directly when drag the resizer arrow.
ReturnsBoolean |
See also
| setEnabled | () | method |
public function setEnabled(b:Boolean):voidSets the resizer to enabled or not.
Parametersb:Boolean |
| setOwner | () | method |
public function setOwner(c:Component):voidSets the owner of this resizer. If the owner is changed, the last owner will be off-dressed the resizer, the new owner will be on-dressed. Use null to off-dress the current owner.
Parametersc:Component — the new owner or null.
|
| setResizeDirectly | () | method |
public function setResizeDirectly(r:Boolean):void
Indicate whether need resize component directly when drag the resizer arrow.
if set to false, there will be a rectange to represent then size what will be resized to.
if set to true, the component will be resize directly when drag, but this is need more cpu counting.
Default is false. Parameters
r:Boolean |
See also