igniteui-webcomponents-grids
Version:
Ignite UI Web Components grid components.
59 lines (58 loc) • 2.08 kB
TypeScript
import { IgcDefinitionBaseComponent } from "./igc-definition-base-component";
import { SummaryRow } from "./SummaryRow";
export declare abstract class IgcSummaryRowComponent extends IgcDefinitionBaseComponent {
/**
* @hidden
*/
get i(): SummaryRow;
constructor();
connectedCallback(): void;
disconnectedCallback(): void;
private static _observedAttributesIgcSummaryRowComponent;
static get observedAttributes(): string[];
/**
* Gets or sets the background color for summary cells when selected.
*/
get selectedBackground(): string;
set selectedBackground(v: string);
/**
* Gets the actual background color for summary cells when selected.
*/
get actualSelectedBackground(): string;
set actualSelectedBackground(v: string);
/**
* Gets or sets the text color for the summary labels.
*/
get summaryLabelTextColor(): string;
set summaryLabelTextColor(v: string);
/**
* Gets the actual text color for the summary labels.
*/
get actualSummaryLabelTextColor(): string;
set actualSummaryLabelTextColor(v: string);
/**
* Gets or sets the text style for the summary labels.
*/
get summaryNameTextStyle(): string;
set summaryNameTextStyle(v: string);
/**
* Gets or sets the amount of left padding to use for the cell content for this column.
*/
get paddingLeft(): number;
set paddingLeft(v: number);
/**
* Gets or sets the amount of top padding to use for the cell content for this column.
*/
get paddingTop(): number;
set paddingTop(v: number);
/**
* Gets or sets the amount of right padding to use for the cell content of this column.
*/
get paddingRight(): number;
set paddingRight(v: number);
/**
* Gets or sets the amount of bottom padding to use for the cell content of this column.
*/
get paddingBottom(): number;
set paddingBottom(v: number);
}