igniteui-react-core
Version:
Ignite UI React Core.
81 lines (80 loc) • 2.87 kB
TypeScript
import { ToolActionInfo } from "./ToolActionInfo";
import { ToolActionType } from "./ToolActionType";
import { Type } from "./type";
/**
* @hidden
*/
export declare class ToolActionButtonPairInfo extends ToolActionInfo {
static $t: Type;
protected get_d(): ToolActionType;
constructor();
private _leftTitle;
get leftTitle(): string;
set leftTitle(a: string);
private _leftCommandArgument;
get leftCommandArgument(): string;
set leftCommandArgument(a: string);
private _leftIconName;
get leftIconName(): string;
set leftIconName(a: string);
private _leftIconCollectionName;
get leftIconCollectionName(): string;
set leftIconCollectionName(a: string);
private _leftIconFill;
get leftIconFill(): string;
set leftIconFill(a: string);
private _leftIconStroke;
get leftIconStroke(): string;
set leftIconStroke(a: string);
private _leftIconStrokeWidth;
get leftIconStrokeWidth(): number;
set leftIconStrokeWidth(a: number);
private _isToggleDisabled;
get isToggleDisabled(): boolean;
set isToggleDisabled(a: boolean);
private _leftIconViewBoxLeft;
get leftIconViewBoxLeft(): number;
set leftIconViewBoxLeft(a: number);
private _leftIconViewBoxTop;
get leftIconViewBoxTop(): number;
set leftIconViewBoxTop(a: number);
private _leftIconViewBoxWidth;
get leftIconViewBoxWidth(): number;
set leftIconViewBoxWidth(a: number);
private _leftIconViewBoxHeight;
get leftIconViewBoxHeight(): number;
set leftIconViewBoxHeight(a: number);
private _rightTitle;
get rightTitle(): string;
set rightTitle(a: string);
private _rightCommandArgument;
get rightCommandArgument(): string;
set rightCommandArgument(a: string);
private _rightIconName;
get rightIconName(): string;
set rightIconName(a: string);
private _rightIconCollectionName;
get rightIconCollectionName(): string;
set rightIconCollectionName(a: string);
private _rightIconFill;
get rightIconFill(): string;
set rightIconFill(a: string);
private _rightIconStroke;
get rightIconStroke(): string;
set rightIconStroke(a: string);
private _rightIconStrokeWidth;
get rightIconStrokeWidth(): number;
set rightIconStrokeWidth(a: number);
private _rightIconViewBoxLeft;
get rightIconViewBoxLeft(): number;
set rightIconViewBoxLeft(a: number);
private _rightIconViewBoxTop;
get rightIconViewBoxTop(): number;
set rightIconViewBoxTop(a: number);
private _rightIconViewBoxWidth;
get rightIconViewBoxWidth(): number;
set rightIconViewBoxWidth(a: number);
private _rightIconViewBoxHeight;
get rightIconViewBoxHeight(): number;
set rightIconViewBoxHeight(a: number);
}