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 Boolean Can(ExcelPreflightCapability capability) #BooleanReturns true when the requested workflow-level capability can be attempted for this workbook.
Parameters
- capability OfficeIMO.Excel.ExcelPreflightCapability
- The OfficeIMO.Excel workflow capability to check.
public ExcelFeatureReport EnsureCan(ExcelPreflightCapability capability) #ExcelFeatureReportThrows with workflow-specific diagnostics when the requested capability cannot be attempted for this workbook.
Parameters
- capability OfficeIMO.Excel.ExcelPreflightCapability
- The OfficeIMO.Excel workflow capability that must be available.
Returns
The current feature report for fluent guard usage.
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 IReadOnlyList<String> GetCapabilityDiagnostics(ExcelPreflightCapability capability) #IReadOnlyList<String>Returns operation-specific diagnostics explaining why a workflow-level capability is blocked, or an empty list when it can be attempted.
Parameters
- capability OfficeIMO.Excel.ExcelPreflightCapability
- The OfficeIMO.Excel workflow capability to explain.
public IReadOnlyList<ExcelPreflightRepairHint> GetRepairHints(ExcelPreflightCapability capability) #IReadOnlyList<ExcelPreflightRepairHint>Returns actionable repair or routing hints for a blocked preflight capability.
Parameters
- capability OfficeIMO.Excel.ExcelPreflightCapability
- Capability to explain.
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.
public Boolean CanReadWorkbookData { get; } #True when OfficeIMO can attempt read-oriented workbook data operations.
public Boolean CanEditCellValues { get; } #True when OfficeIMO can attempt cell-value edits without known unsupported package features.
public Boolean CanEditWorkbookStructure { get; } #True when OfficeIMO can attempt structure-changing workbook edits without preserve-only or unsupported feature blockers.
public Boolean CanUseCachedFormulaValues { get; } #True when cached formula values can be trusted for read/export workflows.
public Boolean CanCalculateFormulas { get; } #True when OfficeIMO's lightweight evaluator can calculate all discovered formulas without known dependency issues.
public Boolean CanBindTemplate { get; } #True when template binding can be attempted without preserve-only or unsupported advanced package features.
public Boolean CanExportPdfReport { get; } #True when the workbook is suitable for the first-party report-grade Excel-to-PDF export path.