igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
44 lines (43 loc) • 1.36 kB
TypeScript
import { WebDockManagerPaneDescription } from "./WebDockManagerPaneDescription";
import { WebDockManagerPointDescription } from "./WebDockManagerPointDescription";
import { Type } from "./type";
/**
* @hidden
*/
export declare class WebSplitPaneDescription extends WebDockManagerPaneDescription {
static $t: Type;
protected get_type(): string;
private static __marshalByValue;
private static __marshalByValueAlias;
constructor();
private w;
get id(): string;
set id(a: string);
private y;
get paneType(): string;
set paneType(a: string);
private x;
get orientation(): string;
set orientation(a: string);
private g;
get panes(): WebDockManagerPaneDescription[];
set panes(a: WebDockManagerPaneDescription[]);
private r;
get size(): number;
set size(a: number);
private i;
get floatingLocation(): WebDockManagerPointDescription;
set floatingLocation(a: WebDockManagerPointDescription);
private q;
get floatingWidth(): number;
set floatingWidth(a: number);
private p;
get floatingHeight(): number;
set floatingHeight(a: number);
private m;
get floatingResizable(): boolean;
set floatingResizable(a: boolean);
private l;
get allowEmpty(): boolean;
set allowEmpty(a: boolean);
}