Struct DWriteLineBreakpoint
Line breakpoint characteristics of a character.
Assembly: JeremyAnsel.DirectX.DWrite.dll
Syntax
public struct DWriteLineBreakpoint : IEquatable<DWriteLineBreakpoint>
Properties
|
Edit this page
View Source
BreakConditionAfter
Gets or sets the breaking condition after the character.
Declaration
public DWriteBreakCondition BreakConditionAfter { get; set; }
Property Value
|
Edit this page
View Source
BreakConditionBefore
Gets or sets the breaking condition before the character.
Declaration
public DWriteBreakCondition BreakConditionBefore { get; set; }
Property Value
|
Edit this page
View Source
IsSoftHyphen
Gets or sets a value indicating whether the character is a soft hyphen, often used to indicate hyphenation
points inside words.
Declaration
public bool IsSoftHyphen { get; set; }
Property Value
|
Edit this page
View Source
IsWhitespace
Gets or sets a value indicating whether the character is some form of whitespace, which may be meaningful
for justification.
Declaration
public bool IsWhitespace { get; set; }
Property Value
Methods
|
Edit this page
View Source
Equals(DWriteLineBreakpoint)
Declaration
public readonly bool Equals(DWriteLineBreakpoint other)
Parameters
Returns
|
Edit this page
View Source
Equals(object?)
Declaration
public override readonly bool Equals(object? obj)
Parameters
| Type |
Name |
Description |
| object |
obj |
|
Returns
Overrides
|
Edit this page
View Source
GetHashCode()
Declaration
public override readonly int GetHashCode()
Returns
Overrides
|
Edit this page
View Source
NativeReadFrom(nint)
Declaration
public static DWriteLineBreakpoint NativeReadFrom(nint buffer)
Parameters
| Type |
Name |
Description |
| nint |
buffer |
|
Returns
|
Edit this page
View Source
NativeReadFrom(nint, Span<DWriteLineBreakpoint>)
Declaration
public static void NativeReadFrom(nint buffer, Span<DWriteLineBreakpoint> objects)
Parameters
|
Edit this page
View Source
NativeRequiredSize()
Declaration
public static int NativeRequiredSize()
Returns
|
Edit this page
View Source
NativeRequiredSize(int)
Declaration
public static int NativeRequiredSize(int count)
Parameters
| Type |
Name |
Description |
| int |
count |
|
Returns
|
Edit this page
View Source
NativeWriteTo(nint, in DWriteLineBreakpoint)
Declaration
public static void NativeWriteTo(nint buffer, in DWriteLineBreakpoint obj)
Parameters
|
Edit this page
View Source
NativeWriteTo(nint, ReadOnlySpan<DWriteLineBreakpoint>)
Declaration
public static void NativeWriteTo(nint buffer, ReadOnlySpan<DWriteLineBreakpoint> objects)
Parameters
Operators
|
Edit this page
View Source
operator ==(DWriteLineBreakpoint, DWriteLineBreakpoint)
Declaration
public static bool operator ==(DWriteLineBreakpoint left, DWriteLineBreakpoint right)
Parameters
Returns
|
Edit this page
View Source
operator !=(DWriteLineBreakpoint, DWriteLineBreakpoint)
Declaration
public static bool operator !=(DWriteLineBreakpoint left, DWriteLineBreakpoint right)
Parameters
Returns
Implements