diff --git a/src/UglyToad.PdfPig/Export/Alto/AltoDocument.AltoBlock.cs b/src/UglyToad.PdfPig/Export/Alto/AltoDocument.AltoBlock.cs index 73cfa4b1..0bb818cd 100644 --- a/src/UglyToad.PdfPig/Export/Alto/AltoDocument.AltoBlock.cs +++ b/src/UglyToad.PdfPig/Export/Alto/AltoDocument.AltoBlock.cs @@ -61,7 +61,7 @@ /// [XmlIgnore] - public bool RotationSpecified { get; private set; } + public bool RotationSpecified { get; set; } /// /// The next block in reading sequence on the page. @@ -86,7 +86,7 @@ /// [XmlIgnore] - public bool CorrectionStatusSpecified { get; private set; } + public bool CorrectionStatusSpecified { get; set; } /// [XmlAttribute("type", Form = XmlSchemaForm.Qualified, Namespace = "http://www.w3.org/1999/xlink")] @@ -122,7 +122,7 @@ /// [XmlIgnore] - public bool ShowSpecified { get; private set; } + public bool ShowSpecified { get; set; } /// [XmlAttribute("actuate", Form = XmlSchemaForm.Qualified, Namespace = "http://www.w3.org/1999/xlink")] @@ -138,7 +138,7 @@ /// [XmlIgnore] - public bool ActuateSpecified { get; private set; } + public bool ActuateSpecified { get; set; } } } } diff --git a/src/UglyToad.PdfPig/Export/Alto/AltoDocument.AltoBlockTypeActuate.cs b/src/UglyToad.PdfPig/Export/Alto/AltoDocument.AltoBlockTypeActuate.cs index 338084b9..98f9b80b 100644 --- a/src/UglyToad.PdfPig/Export/Alto/AltoDocument.AltoBlockTypeActuate.cs +++ b/src/UglyToad.PdfPig/Export/Alto/AltoDocument.AltoBlockTypeActuate.cs @@ -17,12 +17,15 @@ /// [XmlEnum("onLoad")] OnLoad, + /// [XmlEnum("onRequest")] OnRequest, + /// [XmlEnum("other")] Other, + /// [XmlEnum("none")] None, diff --git a/src/UglyToad.PdfPig/Export/Alto/AltoDocument.AltoBlockTypeShow.cs b/src/UglyToad.PdfPig/Export/Alto/AltoDocument.AltoBlockTypeShow.cs index efd21981..f722fa9f 100644 --- a/src/UglyToad.PdfPig/Export/Alto/AltoDocument.AltoBlockTypeShow.cs +++ b/src/UglyToad.PdfPig/Export/Alto/AltoDocument.AltoBlockTypeShow.cs @@ -17,15 +17,19 @@ /// [XmlEnum("new")] New, + /// [XmlEnum("replace")] Replace, + /// [XmlEnum("embed")] Embed, + /// [XmlEnum("other")] Other, + /// [XmlEnum("none")] None diff --git a/src/UglyToad.PdfPig/Export/Alto/AltoDocument.AltoEllipse.cs b/src/UglyToad.PdfPig/Export/Alto/AltoDocument.AltoEllipse.cs index 7200674e..a5f8a19f 100644 --- a/src/UglyToad.PdfPig/Export/Alto/AltoDocument.AltoEllipse.cs +++ b/src/UglyToad.PdfPig/Export/Alto/AltoDocument.AltoEllipse.cs @@ -51,7 +51,7 @@ /// [XmlIgnore] - public bool RotationSpecified { get; private set; } + public bool RotationSpecified { get; set; } } } } diff --git a/src/UglyToad.PdfPig/Export/Alto/AltoDocument.AltoGlyph.cs b/src/UglyToad.PdfPig/Export/Alto/AltoDocument.AltoGlyph.cs index ef9661b6..3f08a357 100644 --- a/src/UglyToad.PdfPig/Export/Alto/AltoDocument.AltoGlyph.cs +++ b/src/UglyToad.PdfPig/Export/Alto/AltoDocument.AltoGlyph.cs @@ -78,7 +78,7 @@ /// [XmlIgnore] - public bool GcSpecified { get; private set; } + public bool GcSpecified { get; set; } /// public override string ToString() diff --git a/src/UglyToad.PdfPig/Export/Alto/AltoDocument.AltoOcrProcessing.cs b/src/UglyToad.PdfPig/Export/Alto/AltoDocument.AltoOcrProcessing.cs index e698f555..285c9869 100644 --- a/src/UglyToad.PdfPig/Export/Alto/AltoDocument.AltoOcrProcessing.cs +++ b/src/UglyToad.PdfPig/Export/Alto/AltoDocument.AltoOcrProcessing.cs @@ -28,7 +28,5 @@ [XmlElement("postProcessingStep")] public AltoProcessingStep[] PostProcessingStep { get; set; } } - - } } diff --git a/src/UglyToad.PdfPig/Export/Alto/AltoDocument.AltoPage.cs b/src/UglyToad.PdfPig/Export/Alto/AltoDocument.AltoPage.cs index 62aa9044..9268498e 100644 --- a/src/UglyToad.PdfPig/Export/Alto/AltoDocument.AltoPage.cs +++ b/src/UglyToad.PdfPig/Export/Alto/AltoDocument.AltoPage.cs @@ -82,7 +82,7 @@ /// [XmlIgnore] - public bool HeightSpecified { get; private set; } + public bool HeightSpecified { get; set; } /// [XmlAttribute("WIDTH")] @@ -98,7 +98,7 @@ /// [XmlIgnore] - public bool WidthSpecified { get; private set; } + public bool WidthSpecified { get; set; } /// /// The number of the page within the document. @@ -126,7 +126,7 @@ /// [XmlIgnore] - public bool QualitySpecified { get; private set; } + public bool QualitySpecified { get; set; } /// [XmlAttribute("QUALITY_DETAIL")] @@ -146,7 +146,7 @@ /// [XmlIgnore] - public bool PositionSpecified { get; private set; } + public bool PositionSpecified { get; set; } /// /// A link to the processing description that has been used for this page. @@ -170,7 +170,7 @@ /// [XmlIgnore] - public bool AccuracySpecified { get; private set; } + public bool AccuracySpecified { get; set; } /// /// @@ -188,7 +188,7 @@ /// [XmlIgnore] - public bool PcSpecified { get; private set; } + public bool PcSpecified { get; set; } } } } diff --git a/src/UglyToad.PdfPig/Export/Alto/AltoDocument.AltoPositionedElement.cs b/src/UglyToad.PdfPig/Export/Alto/AltoDocument.AltoPositionedElement.cs index a6dbb560..51e462ff 100644 --- a/src/UglyToad.PdfPig/Export/Alto/AltoDocument.AltoPositionedElement.cs +++ b/src/UglyToad.PdfPig/Export/Alto/AltoDocument.AltoPositionedElement.cs @@ -38,7 +38,7 @@ /// Whether to include in the output. /// [XmlIgnore] - public bool HeightSpecified { get; private set; } + public bool HeightSpecified { get; set; } /// /// Width. @@ -58,7 +58,7 @@ /// Whether to include in the output. /// [XmlIgnore] - public bool WidthSpecified { get; private set; } + public bool WidthSpecified { get; set; } /// /// Horizontal position. @@ -78,7 +78,7 @@ /// Whether to include in the output. /// [XmlIgnore] - public bool HorizontalPositionSpecified { get; private set; } + public bool HorizontalPositionSpecified { get; set; } /// /// Vertical position. @@ -98,9 +98,7 @@ /// Whether to include in the output. /// [XmlIgnore] - public bool VerticalPositionSpecified { get; private set; } + public bool VerticalPositionSpecified { get; set; } } - - } } diff --git a/src/UglyToad.PdfPig/Export/Alto/AltoDocument.AltoProcessingStep.cs b/src/UglyToad.PdfPig/Export/Alto/AltoDocument.AltoProcessingStep.cs index c27c99e4..84495520 100644 --- a/src/UglyToad.PdfPig/Export/Alto/AltoDocument.AltoProcessingStep.cs +++ b/src/UglyToad.PdfPig/Export/Alto/AltoDocument.AltoProcessingStep.cs @@ -35,7 +35,7 @@ /// [XmlIgnore] - public bool ProcessingCategorySpecified { get; private set; } + public bool ProcessingCategorySpecified { get; set; } /// /// Date or DateTime the image was processed. diff --git a/src/UglyToad.PdfPig/Export/Alto/AltoDocument.AltoQuality.cs b/src/UglyToad.PdfPig/Export/Alto/AltoDocument.AltoQuality.cs index 1b9fe867..c3110c14 100644 --- a/src/UglyToad.PdfPig/Export/Alto/AltoDocument.AltoQuality.cs +++ b/src/UglyToad.PdfPig/Export/Alto/AltoDocument.AltoQuality.cs @@ -17,17 +17,23 @@ /// // ReSharper disable once InconsistentNaming OK, + /// Missing, + /// [XmlEnum("Missing in original")] MissingInOriginal, + /// Damaged, + /// Retained, + /// Target, + /// [XmlEnum("As in original")] AsInOriginal, diff --git a/src/UglyToad.PdfPig/Export/Alto/AltoDocument.AltoString.cs b/src/UglyToad.PdfPig/Export/Alto/AltoDocument.AltoString.cs index 0e8c9a93..8c09d7f5 100644 --- a/src/UglyToad.PdfPig/Export/Alto/AltoDocument.AltoString.cs +++ b/src/UglyToad.PdfPig/Export/Alto/AltoDocument.AltoString.cs @@ -66,7 +66,7 @@ /// [XmlIgnore] - public bool StyleSpecified { get; private set; } + public bool StyleSpecified { get; set; } /// [XmlAttribute("SUBS_TYPE")] @@ -82,7 +82,7 @@ /// [XmlIgnore] - public bool SubsTypeSpecified { get; private set; } + public bool SubsTypeSpecified { get; set; } /// /// Content of the substitution. @@ -104,7 +104,7 @@ /// [XmlIgnore] - public bool WcSpecified { get; private set; } + public bool WcSpecified { get; set; } /// /// Confidence level of each character in that string. A list of numbers, @@ -130,7 +130,7 @@ /// [XmlIgnore] - public bool CorrectionStatusSpecified { get; private set; } + public bool CorrectionStatusSpecified { get; set; } /// /// Attribute to record language of the string. The language should be recorded at the highest level possible. diff --git a/src/UglyToad.PdfPig/Export/Alto/AltoDocument.AltoTextBlockTextLine.cs b/src/UglyToad.PdfPig/Export/Alto/AltoDocument.AltoTextBlockTextLine.cs index d9beb70d..a38749e8 100644 --- a/src/UglyToad.PdfPig/Export/Alto/AltoDocument.AltoTextBlockTextLine.cs +++ b/src/UglyToad.PdfPig/Export/Alto/AltoDocument.AltoTextBlockTextLine.cs @@ -66,7 +66,7 @@ /// [XmlIgnore] - public bool BaseLineSpecified { get; private set; } + public bool BaseLineSpecified { get; set; } /// [XmlAttribute("LANG", DataType = "language")] @@ -89,7 +89,7 @@ /// [XmlIgnore] - public bool CorrectionStatusSpecified { get; private set; } + public bool CorrectionStatusSpecified { get; set; } /// public override string ToString() diff --git a/src/UglyToad.PdfPig/Export/Alto/AltoDocument.AltoTextStyle.cs b/src/UglyToad.PdfPig/Export/Alto/AltoDocument.AltoTextStyle.cs index 78e603a6..5c8928ba 100644 --- a/src/UglyToad.PdfPig/Export/Alto/AltoDocument.AltoTextStyle.cs +++ b/src/UglyToad.PdfPig/Export/Alto/AltoDocument.AltoTextStyle.cs @@ -44,7 +44,7 @@ /// [XmlIgnore] - public bool FontTypeSpecified { get; private set; } + public bool FontTypeSpecified { get; set; } /// [XmlAttribute("FONTWIDTH")] @@ -60,7 +60,7 @@ /// [XmlIgnore] - public bool FontWidthSpecified { get; private set; } + public bool FontWidthSpecified { get; set; } /// /// The font size, in points (1/72 of an inch). @@ -90,7 +90,7 @@ /// [XmlIgnore] - public bool FontStyleSpecified { get; private set; } + public bool FontStyleSpecified { get; set; } } } } diff --git a/src/UglyToad.PdfPig/Export/Alto/AltoDocument.AltoVariant.cs b/src/UglyToad.PdfPig/Export/Alto/AltoDocument.AltoVariant.cs index a63f74a6..e1c78846 100644 --- a/src/UglyToad.PdfPig/Export/Alto/AltoDocument.AltoVariant.cs +++ b/src/UglyToad.PdfPig/Export/Alto/AltoDocument.AltoVariant.cs @@ -50,7 +50,7 @@ /// [XmlIgnore] - public bool VcSpecified { get; private set; } + public bool VcSpecified { get; set; } } } }