@docsvision/webclient
Version:
Type definitions for DocsVision WebClient scripts and extensions.
23 lines (22 loc) • 809 B
TypeScript
import { GenModels } from "@docsvision/webclient/Generated/DocsVision.WebClient.Models";
import { Table } from "@docsvision/webclient/Platform/Table";
interface ITableColumnWrapperInternal {
info: GenModels.LayoutTableColumnInfo;
table: Table;
columnNumber: number;
}
export interface TableColumnWrapperInternal extends ITableColumnWrapperInternal {
}
export declare class TableColumnWrapper implements GenModels.LayoutTableColumnInfo {
private private;
constructor(info: GenModels.LayoutTableColumnInfo, table: Table, columnNumber: number);
get header(): string;
set header(val: string);
get columnWidth(): string;
set columnWidth(val: string);
get tip(): string;
set tip(val: string);
get visibility(): boolean;
set visibility(val: boolean);
}
export {};