API Reference

Class

PdfConversionWarning

Namespace OfficeIMO.Pdf
Assembly OfficeIMO.Pdf
Modifiers sealed

Shared converter warning used by OfficeIMO PDF adapters so wrappers can consume one diagnostic shape.

Inheritance

  • Object
  • PdfConversionWarning

Usage

This type appears in these public API surfaces even when no hand-authored example is attached directly to the page.

Accepted by parameters

Constructors

public PdfConversionWarning(String converter, String code, String source, String message, PdfConversionWarningSeverity severity = Warning, PdfLayoutDiagnostic layoutDiagnostic = null, IReadOnlyDictionary<String, String> details = null) #

Creates a converter warning.

Parameters

converter System.String requiredposition: 0
code System.String requiredposition: 1
source System.String requiredposition: 2
message System.String requiredposition: 3
severity OfficeIMO.Pdf.PdfConversionWarningSeverity = Warning optionalposition: 4
layoutDiagnostic OfficeIMO.Pdf.PdfLayoutDiagnostic = null optionalposition: 5
details System.Collections.Generic.IReadOnlyDictionary{System.String,System.String} = null optionalposition: 6

Methods

public override String ToString() #
Returns: String

Properties

public String Converter { get; } #

Converter or adapter that produced the warning.

public String Code { get; } #

Stable warning code suitable for assertions and wrapper routing.

public String Source { get; } #

Source document area, page, sheet, slide, block type, or feature that produced the warning.

public String Message { get; } #

Human-readable diagnostic message.

public PdfConversionWarningSeverity Severity { get; } #

Severity assigned by the converter.

public PdfLayoutDiagnostic LayoutDiagnostic { get; } #

Optional shared layout diagnostic when the warning maps to visible PDF layout or clipping behavior.

public IReadOnlyDictionary<String, String> Details { get; } #

Additional converter-specific details such as sheet name, slide number, or feature name.