Struct DWriteLineBreakpoint
Line breakpoint characteristics of a character.
Implements
Inherited Members
Namespace: JeremyAnsel.DirectX.DWrite
Assembly: JeremyAnsel.DirectX.DWrite.dll
Syntax
public struct DWriteLineBreakpoint : IEquatable<DWriteLineBreakpoint>
Properties
| Edit this page View SourceBreakConditionAfter
Gets or sets the breaking condition after the character.
Declaration
public DWriteBreakCondition BreakConditionAfter { get; set; }
Property Value
Type | Description |
---|---|
DWriteBreakCondition |
BreakConditionBefore
Gets or sets the breaking condition before the character.
Declaration
public DWriteBreakCondition BreakConditionBefore { get; set; }
Property Value
Type | Description |
---|---|
DWriteBreakCondition |
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
Type | Description |
---|---|
bool |
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
Type | Description |
---|---|
bool |
Methods
| Edit this page View SourceEquals(DWriteLineBreakpoint)
Determines whether the specified object is equal to the current object.
Declaration
public bool Equals(DWriteLineBreakpoint other)
Parameters
Type | Name | Description |
---|---|---|
DWriteLineBreakpoint | other | The object to compare with the current object. |
Returns
Type | Description |
---|---|
bool |
Equals(object)
Determines whether the specified object is equal to the current object.
Declaration
public override bool Equals(object obj)
Parameters
Type | Name | Description |
---|---|---|
object | obj | The object to compare with the current object. |
Returns
Type | Description |
---|---|
bool |
Overrides
| Edit this page View SourceGetHashCode()
Returns the hash code for this instance.
Declaration
public override int GetHashCode()
Returns
Type | Description |
---|---|
int | A 32-bit signed integer that is the hash code for this instance. |
Overrides
Operators
| Edit this page View Sourceoperator ==(DWriteLineBreakpoint, DWriteLineBreakpoint)
Compares two DWriteLineBreakpoint objects. The result specifies whether the values of the two objects are equal.
Declaration
public static bool operator ==(DWriteLineBreakpoint left, DWriteLineBreakpoint right)
Parameters
Type | Name | Description |
---|---|---|
DWriteLineBreakpoint | left | The left DWriteLineBreakpoint to compare. |
DWriteLineBreakpoint | right | The right DWriteLineBreakpoint to compare. |
Returns
Type | Description |
---|---|
bool |
operator !=(DWriteLineBreakpoint, DWriteLineBreakpoint)
Compares two DWriteLineBreakpoint objects. The result specifies whether the values of the two objects are unequal.
Declaration
public static bool operator !=(DWriteLineBreakpoint left, DWriteLineBreakpoint right)
Parameters
Type | Name | Description |
---|---|---|
DWriteLineBreakpoint | left | The left DWriteLineBreakpoint to compare. |
DWriteLineBreakpoint | right | The right DWriteLineBreakpoint to compare. |
Returns
Type | Description |
---|---|
bool |