UNPKG

igniteui-react-grids

Version:

Ignite UI React grid components.

42 lines (41 loc) 1.42 kB
import { FormatSummaryTextEventArgs as FormatSummaryTextEventArgs_internal } from "./FormatSummaryTextEventArgs"; import { ContentChildrenManager } from "igniteui-react-core"; export declare class IgrFormatSummaryTextEventArgs { protected createImplementation(): FormatSummaryTextEventArgs_internal; protected _implementation: any; protected mounted: boolean; get nativeElement(): HTMLElement; /** * @hidden */ get i(): FormatSummaryTextEventArgs_internal; protected onImplementationCreated(): void; protected _contentChildrenManager: ContentChildrenManager; constructor(); protected _provideImplementation(i: any): void; /** * Gets the summary property name. */ get field(): string; set field(v: string); /** * Gets the summary display name. */ get displayName(): string; set displayName(v: string); /** * Gets the original value before formatting. */ get summaryResult(): any; set summaryResult(v: any); /** * Gets or sets the summary value as formatted text. Setting this property will only affect summary cells. */ get formattedResult(): string; set formattedResult(v: string); /** * Gets or sets the final text that will be displayed in the group header. */ get formattedText(): string; set formattedText(v: string); }