DWRITE_OVERHANG_METRICS

<summary> The DWRITE_OVERHANG_METRICS structure holds how much any visible pixels (in DIPs) overshoot each side of the layout or inline objects. </summary> <remarks> Positive overhangs indicate that the visible area extends outside the layout box or inline object, while negative values mean there is whitespace inside. The returned values are unaffected by rendering transforms or pixel snapping. Additionally, they may not exactly match final target's pixel bounds after applying grid fitting and hinting. </remarks>

struct DWRITE_OVERHANG_METRICS {}

Members

Variables

bottom
FLOAT bottom;

<summary> The distance from the bottom-most visible DIP to its bottom alignment edge. </summary>

left
FLOAT left;

<summary> The distance from the left-most visible DIP to its left alignment edge. </summary>

right
FLOAT right;

<summary> The distance from the right-most visible DIP to its right alignment edge. </summary>

top
FLOAT top;

<summary> The distance from the top-most visible DIP to its top alignment edge. </summary>

Meta