mirror of
https://github.com/UglyToad/PdfPig.git
synced 2026-03-10 00:23:29 +08:00
33 lines
895 B
C#
33 lines
895 B
C#
namespace UglyToad.PdfPig.Export.Alto
|
|
{
|
|
using System;
|
|
using System.ComponentModel;
|
|
using System.Diagnostics;
|
|
using System.Xml.Serialization;
|
|
|
|
public partial class AltoDocument
|
|
{
|
|
/// <summary>
|
|
/// [Alto] Styles.
|
|
/// </summary>
|
|
[EditorBrowsable(EditorBrowsableState.Never)]
|
|
[Serializable]
|
|
[DebuggerStepThrough]
|
|
[XmlType(Namespace = "http://www.loc.gov/standards/alto/ns-v4#")]
|
|
public class AltoStyles
|
|
{
|
|
/// <summary>
|
|
/// Text Style.
|
|
/// </summary>
|
|
[XmlElement("TextStyle")]
|
|
public AltoTextStyle[] TextStyle { get; set; }
|
|
|
|
/// <summary>
|
|
/// Paragraph Style.
|
|
/// </summary>
|
|
[XmlElement("ParagraphStyle")]
|
|
public AltoParagraphStyle[] ParagraphStyle { get; set; }
|
|
}
|
|
}
|
|
}
|