C:/GoDev/src/TCSTK-Angular/projects/tibco-tcstk/tc-core-lib/src/lib/models/tc-widget-header.ts
Properties |
Methods |
enabled |
Type : boolean
|
filled |
Type : boolean
|
icon |
Type : string
|
id |
Type : string
|
label |
Type : string
|
tooltip |
Type : string
|
visible |
Type : boolean
|
deserialize | ||||||
deserialize(input: any)
|
||||||
Parameters :
Returns :
this
|
import { Deserializable} from './deserializable';
export class ToolbarButton implements Deserializable {
id: string;
icon: string;
visible: boolean;
enabled: boolean;
tooltip: string;
filled: boolean;
label: string;
deserialize(input: any) {
Object.assign(this, input);
return this;
}
}