class BaseDividedBox
package feathers.controls.supportClasses
extends FeathersControl › MeasureSprite › ValidatingSprite
extended by HDividedBox, VDividedBox
Base class for divided box components.
1.0.0
.See also:
Variables
autoSizeMode:AutoSizeMode
Determines how the container will set its own size when its dimensions (width and height) aren't set explicitly.
In the following example, the container will be sized to match the stage:
drawer.autoSizeMode = STAGE;
1.0.0
.See also:
backgroundSkin:DisplayObject
The default background skin to display behind the container's content.
The following example passes a bitmap for the container to use as a background skin:
container.backgroundSkin = new Bitmap(bitmapData);
1.0.0
.See also:
disabledBackgroundSkin:DisplayObject
A background skin to display behind the container's content when the container is disabled.
The following example gives the container a disabled background skin:
container.disabledBackgroundSkin = new Bitmap(bitmapData);
container.enabled = false;
1.0.0
.See also:
dividerFactory:AbstractDisplayObjectFactory<Dynamic, InteractiveObject>
Creates the dividers, which must be of type openfl.display.InteractiveObject
.
In the following example, a custom divider factory is provided:
dividedBox.dividerFactory = () ->
{
return new Button();
};
1.0.0
.liveDragging:Bool = true
Determines if the children are resized immediately as a divider moves while dragging, or only after the user stops dragging.
In the following example, live dragging is disabled:
container.liveDragging = false;
1.0.0
.See also:
resizeDraggingSkin:DisplayObject
The skin to display when a resize gesture is active and liveDragging
is false
.
1.0.0
.See also: