igniteui-react-core
Version:
Ignite UI React Core.
70 lines (69 loc) • 2.3 kB
TypeScript
import { DataGridColumnDescription } from "./DataGridColumnDescription";
import { FormatSpecifierDescription } from "./FormatSpecifierDescription";
import { BaseDataSourceDescription } from "./BaseDataSourceDescription";
import { BaseGenericDataSourceDescription } from "./BaseGenericDataSourceDescription";
import { Type } from "./type";
/**
* @hidden
*/
export declare class NumericColumnDescription extends DataGridColumnDescription {
static $t: Type;
protected get_type(): string;
private static __canMarshalByValue1;
private static __marshalByValueAlias1;
constructor();
private jk;
get negativePrefix(): string;
set negativePrefix(a: string);
private jm;
get positivePrefix(): string;
set positivePrefix(a: string);
private jl;
get negativeSuffix(): string;
set negativeSuffix(a: string);
private jn;
get positiveSuffix(): string;
set positiveSuffix(a: string);
private i7;
get maxFractionDigits(): number;
set maxFractionDigits(a: number);
private i8;
get minFractionDigits(): number;
set minFractionDigits(a: number);
private i9;
get minIntegerDigits(): number;
set minIntegerDigits(a: number);
private i3;
get isPercent(): boolean;
set isPercent(a: boolean);
private i4;
get showGroupingSeparator(): boolean;
set showGroupingSeparator(a: boolean);
private jj;
get formatString(): string;
set formatString(a: string);
private iw;
get formatSpecifiers(): FormatSpecifierDescription[];
set formatSpecifiers(a: FormatSpecifierDescription[]);
private ji;
get formatOverrideRef(): string;
set formatOverrideRef(a: string);
private jg;
get editorType(): string;
set editorType(a: string);
private je;
get editorDataSourceRef(): string;
set editorDataSourceRef(a: string);
private iy;
get dataSource(): BaseDataSourceDescription;
set dataSource(a: BaseDataSourceDescription);
private i0;
get genericDataSource(): BaseGenericDataSourceDescription;
set genericDataSource(a: BaseGenericDataSourceDescription);
private jf;
get editorTextField(): string;
set editorTextField(a: string);
private jh;
get editorValueField(): string;
set editorValueField(a: string);
}