UNPKG

@flashport/flashportui

Version:

This is a set basic UI components for FlashPort

26 lines (25 loc) 634 B
import { Sprite } from "@flashport/flashport"; /** * ... * @author Kenny Lerma */ export declare class KScrollbar extends Sprite { static readonly SLIDE_CHANGE: string; private _width; private _height; private _track; private _handle; private _value; private _active; private _isMouseDown; constructor(widthHorizontal?: number, heightHorizontal?: number); private enable; private onHandleDown; private onStageUp; private onHandleMouseMove; private Draw; set value(value: number); get value(): number; get isMouseDown(): boolean; set active(value: boolean); }