- Add AnnotationType enum (TextMarkup, FreeText, StickyNote, Circle, Square) - Add TextMarkupStyle enum (Highlight, Underline, Strikeout) - Support 5 annotation types as per CONTROLLER_ENDPOINTS.md requirements
24 lines
507 B
C#
24 lines
507 B
C#
namespace DocumentOperator.Domain.Models.ValueObjects;
|
|
|
|
/// <summary>
|
|
/// Text markup annotation style (highlight, underline, strikeout)
|
|
/// Maps to DevExpress PdfTextMarkupAnnotationType
|
|
/// </summary>
|
|
public enum TextMarkupStyle
|
|
{
|
|
/// <summary>
|
|
/// Highlight text with background color
|
|
/// </summary>
|
|
Highlight,
|
|
|
|
/// <summary>
|
|
/// Underline text
|
|
/// </summary>
|
|
Underline,
|
|
|
|
/// <summary>
|
|
/// Strikeout text (strikethrough)
|
|
/// </summary>
|
|
Strikeout
|
|
}
|