• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

IgniteUI / igniteui-angular-wrappers / 4427504397

pending completion
4427504397

push

github

GitHub
Update README.md

281 of 305 branches covered (92.13%)

Branch coverage included in aggregate %.

668 of 713 relevant lines covered (93.69%)

219.79 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

50.0
/projects/igniteui-angular-wrappers/src/lib/igspreadsheet/igspreadsheet.component.ts
1
import { Component, ElementRef, IterableDiffers, KeyValueDiffers, ChangeDetectorRef, Renderer2 } from '@angular/core';
2
import { IgControlBase } from '../igcontrolbase/igcontrolbase';
3

4
@Component({
5
    selector: 'ig-spreadsheet',
6
    template: '<ng-content></ng-content>',
7
    inputs: ['widgetId', 'options', 'changeDetectionInterval', 'disabled', 'create', 'width', 'height', 'activeCell', 'isScrollLocked', 'activeWorksheet', 'allowAddWorksheet', 'allowDeleteWorksheet', 'areGridlinesVisible', 'areHeadersVisible', 'enterKeyNavigationDirection', 'isEnterKeyNavigationEnabled', 'isFormulaBarVisible', 'isInEndMode', 'isUndoEnabled', 'nameBoxWidth', 'selectionMode', 'selectedWorksheets', 'validationInputMessagePosition', 'workbook', 'zoomLevel'],
8
    outputs: ['actionExecuted', 'actionExecuting', 'activeCellChanged', 'activePaneChanged', 'activeWorksheetChanged', 'editRangePasswordNeeded', 'hyperlinkExecuting', 'selectionChanged', 'userPromptDisplaying', 'workbookDirtied']
9
})
10
export class IgSpreadsheetComponent extends IgControlBase<IgSpreadsheet> {
1✔
11
    constructor(el: ElementRef, renderer: Renderer2, differs: IterableDiffers, kvalDiffers: KeyValueDiffers, cdr: ChangeDetectorRef) {
12
        super(el, renderer, differs, kvalDiffers, cdr);
×
13
    }
14
    /**
15
     * Returns an object that represents the pane with the focus.
16
     */
17
    /* istanbul ignore next */
18
    public getActivePane(): object { return; }
19

20
    /**
21
     * Returns an object that represents the current selection of the active pane.
22
     */
23
    /* istanbul ignore next */
24
    public getActiveSelection(): object { return; }
25

26
    /*
27
     * Returns an object used to get the formatting of the activeCell and where modifications are applied to the entire active selection.
28
     * Any changes made to this object will affect all the objects in the selection. So for example, the
29
     * Font.Name may return "Arial" because the active cell has that as its resolved font name even though the other
30
     * cells are using a different font but if you set the Font.Name of this object to "Arial" then all the objects
31
     * affected by the selection will have their Font.Name updated to that value.
32
    */
33
    /* istanbul ignore next */
34
    public getActiveSelectionCellRangeFormat(): object { return; }
35

36
    /**
37
     * Returns a boolean indicating if the user is currently editing the name of the active worksheet.
38
     */
39
    /* istanbul ignore next */
40
    public getIsRenamingWorksheet(): boolean { return; }
41

42
    /*
43
     * Returns an array of the panes for the activeWorksheet.
44
     *
45
     *                                 returnType="ig.spreadsheet.SpreadsheetPane[]"
46
    */
47
    /* istanbul ignore next */
48
    public getPanes(): void { return; }
49

50
    /**
51
     * Executes the action associated with the specified id.
52
     *
53
     * @param action An [enumeration](ig.spreadsheet.SpreadsheetAction) or string that identifies the action to execute.
54
     */
55
    /* istanbul ignore next */
56
    public executeAction(action: object): boolean { return; }
57

58
    /**
59
     * Forces any pending deferred work to render on the spreadsheet before continuing
60
     */
61
    /* istanbul ignore next */
62
    public flush(): void { return; }
63

64
    /**
65
     * Destroys the widget.
66
     */
67
    /* istanbul ignore next */
68
    public destroy(): void { return; }
69

70
    /**
71
     * Notify the spreadsheet that style information used for rendering the spreadsheet may have been updated.
72
     */
73
    /* istanbul ignore next */
74
    public styleUpdated(): void { return; }
75
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2025 Coveralls, Inc