mirror of
https://github.com/UglyToad/PdfPig.git
synced 2025-10-08 00:14:35 +08:00
Tidy up documentation
This commit is contained in:
@@ -245,54 +245,54 @@
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// TODO
|
||||
/// Pattern types.
|
||||
/// </summary>
|
||||
public enum PatternType : byte
|
||||
{
|
||||
/// <summary>
|
||||
/// TODO
|
||||
/// Tiling pattern type.
|
||||
/// </summary>
|
||||
Tiling = 1,
|
||||
|
||||
/// <summary>
|
||||
/// TODO
|
||||
/// Shading pattern type.
|
||||
/// </summary>
|
||||
Shading = 2
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// TODO
|
||||
/// Pattern paint types.
|
||||
/// </summary>
|
||||
public enum PatternPaintType : byte
|
||||
{
|
||||
/// <summary>
|
||||
/// TODO
|
||||
/// Coloured pattern paint type.
|
||||
/// </summary>
|
||||
Coloured = 1,
|
||||
|
||||
/// <summary>
|
||||
/// TODO
|
||||
/// Uncoloured pattern paint type.
|
||||
/// </summary>
|
||||
Uncoloured = 2
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// TODO
|
||||
/// Pattern tiling types.
|
||||
/// </summary>
|
||||
public enum PatternTilingType : byte
|
||||
{
|
||||
/// <summary>
|
||||
/// TODO
|
||||
/// Constant spacing pattern tiling type.
|
||||
/// </summary>
|
||||
ConstantSpacing = 1,
|
||||
|
||||
/// <summary>
|
||||
/// TODO
|
||||
/// No distortion pattern tiling type.
|
||||
/// </summary>
|
||||
NoDistortion = 2,
|
||||
|
||||
/// <summary>
|
||||
/// TODO
|
||||
/// Constant spacing faster tiling pattern tiling type.
|
||||
/// </summary>
|
||||
ConstantSpacingFasterTiling = 3
|
||||
}
|
||||
|
@@ -125,20 +125,16 @@
|
||||
public static PdfDocument Open(Stream stream, ParsingOptions? options = null) => PdfDocumentFactory.Open(stream, options);
|
||||
|
||||
/// <summary>
|
||||
/// TODO
|
||||
/// Add a page factory.
|
||||
/// </summary>
|
||||
/// <typeparam name="TPage"></typeparam>
|
||||
/// <param name="pageFactory"></param>
|
||||
public void AddPageFactory<TPage>(IPageFactory<TPage> pageFactory)
|
||||
{
|
||||
pages.AddPageFactory(pageFactory);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// TODO
|
||||
/// Add a page factory.
|
||||
/// </summary>
|
||||
/// <typeparam name="TPage"></typeparam>
|
||||
/// <typeparam name="TPageFactory"></typeparam>
|
||||
#if NET
|
||||
public void AddPageFactory<TPage, [System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembers(System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.PublicConstructors)] TPageFactory>() where TPageFactory : IPageFactory<TPage>
|
||||
#else
|
||||
|
Reference in New Issue
Block a user