API Reference
ExcelFeatureReport
Workbook-level feature and compatibility report.
Inheritance
- Object
- ExcelFeatureReport
Usage
This type appears in these public API surfaces even when no hand-authored example is attached directly to the page.
Returned or exposed by
Methods
public ExcelFeatureReport EnsureNoAdvancedFeatures() #ExcelFeatureReportThrows when the workbook contains preserve-only or unsupported advanced features.
public ExcelFeatureReport EnsureNoFeatures(params ExcelFeatureSupportLevel[] supportLevels) #ExcelFeatureReportThrows when the workbook contains any of the named features.
Parameters
- featureNames System.String[]
- Feature names to reject, for example VBA macros or External workbook links.
EnsureNoFeatures(System.Collections.Generic.IEnumerable{System.String} featureNames) #Throws when the workbook contains any of the named features.
Parameters
- featureNames System.Collections.Generic.IEnumerable{System.String}
- Feature names to reject, for example VBA macros or External workbook links.
EnsureNoFeatures(OfficeIMO.Excel.ExcelFeatureSupportLevel[] supportLevels) #Throws when the workbook contains any features with the provided support levels.
Parameters
- supportLevels OfficeIMO.Excel.ExcelFeatureSupportLevel[]
- Support levels to reject.
public ExcelFeatureReport EnsureNoUnsupportedFeatures() #ExcelFeatureReportThrows when the workbook contains unsupported features.
public IReadOnlyList<ExcelFeatureFinding> FindFeatures(params ExcelFeatureSupportLevel[] supportLevels) #IReadOnlyList<ExcelFeatureFinding>Returns discovered features matching the provided feature names.
Parameters
- featureNames System.String[]
- Feature names to match, for example VBA macros or External workbook links.
FindFeatures(System.Collections.Generic.IEnumerable{System.String} featureNames) #Returns discovered features matching the provided feature names.
Parameters
- featureNames System.Collections.Generic.IEnumerable{System.String}
- Feature names to match, for example VBA macros or External workbook links.
FindFeatures(OfficeIMO.Excel.ExcelFeatureSupportLevel[] supportLevels) #Returns discovered features with one of the provided support levels.
Parameters
- supportLevels OfficeIMO.Excel.ExcelFeatureSupportLevel[]
- Support levels to match.
public String ToMarkdown() #StringReturns a compact Markdown report of discovered workbook features and support status.
Inherited Methods
public override Boolean Equals(Object obj) #BooleanParameters
- obj Object
Properties
public IReadOnlyList<ExcelFeatureFinding> Features { get; } #Features discovered in the workbook.
public IReadOnlyList<ExcelFeatureFinding> EditableFeatures { get; } #Features OfficeIMO can author or edit directly.
public IReadOnlyList<ExcelFeatureFinding> PartiallyEditableFeatures { get; } #Features OfficeIMO can partly author or edit.
public IReadOnlyList<ExcelFeatureFinding> PreservedFeatures { get; } #Advanced features OfficeIMO should preserve but cannot fully author or edit yet.
public IReadOnlyList<ExcelFeatureFinding> UnsupportedFeatures { get; } #Features OfficeIMO does not meaningfully support yet.
public Boolean HasAdvancedFeatures { get; } #Whether the workbook contains advanced features that should be checked before edit-heavy round trips.