rename TextDirection into TextOrientation

This commit is contained in:
BobLd
2020-05-23 19:35:43 +01:00
committed by Eliot Jones
parent 33ee66af42
commit 5f75205e41
9 changed files with 46 additions and 46 deletions

View File

@@ -17,9 +17,9 @@
public string Text { get; }
/// <summary>
/// The text direction of the block.
/// The text orientation of the block.
/// </summary>
public TextDirection TextDirection { get; }
public TextOrientation TextOrientation { get; }
/// <summary>
/// The rectangle completely containing the block.
@@ -64,7 +64,7 @@
var maxY = lines.Max(x => x.BoundingBox.Top);
BoundingBox = new PdfRectangle(minX, minY, maxX, maxY);
TextDirection = lines[0].TextDirection;
TextOrientation = lines[0].TextOrientation;
}
/// <summary>