ISpreadsheetItemProvider ISpreadsheetItemProvider ISpreadsheetItemProvider ISpreadsheetItemProvider Interface

Definition

Provides access to information about an item (cell) in a spreadsheet.

public : interface ISpreadsheetItemProviderpublic interface ISpreadsheetItemProviderPublic Interface ISpreadsheetItemProvider// This API is not available in Javascript.
Attributes
Windows 10 requirements
Device family
Windows 10 (introduced v10.0.10240.0)
API contract
Windows.Foundation.UniversalApiContract (introduced v1)

Properties

Formula Formula Formula Formula

Gets the formula for this spreadsheet cell, as a string.

public : PlatForm::String Formula { get; }public string Formula { get; }Public ReadOnly Property Formula As string// This API is not available in Javascript.
Value
PlatForm::String string string string

The formula for this cell, as a string.

Methods

GetAnnotationObjects() GetAnnotationObjects() GetAnnotationObjects() GetAnnotationObjects()

Returns an array of objects that represent the annotations associated with this spreadsheet cell.

public : IRawElementProviderSimple[] GetAnnotationObjects()public IRawElementProviderSimple[] GetAnnotationObjects()Public Function GetAnnotationObjects() As IRawElementProviderSimple[]// This API is not available in Javascript.
Returns
IRawElementProviderSimple[] IRawElementProviderSimple[] IRawElementProviderSimple[] IRawElementProviderSimple[]

An array of IRawElementProviderSimple interfaces for Microsoft UI Automation elements that represent the annotations associated with the spreadsheet cell.

GetAnnotationTypes() GetAnnotationTypes() GetAnnotationTypes() GetAnnotationTypes()

Returns an array of annotation type identifiers indicating the types of annotations that are associated with this spreadsheet cell.

public : AnnotationType[] GetAnnotationTypes()public AnnotationType[] GetAnnotationTypes()Public Function GetAnnotationTypes() As AnnotationType[]// This API is not available in Javascript.
Returns
AnnotationType[] AnnotationType[] AnnotationType[] AnnotationType[]

An array of annotation type identifiers, which contains one entry for each type of annotation associated with the spreadsheet cell. For a list of possible values, see AnnotationType.

See Also