UnicodeRangeSegment Struct
Definition
public struct UnicodeRangeSegment
Constructors
| Name | Description |
|---|---|
| UnicodeRangeSegment | No summary available. |
UnicodeRangeSegment Constructor
public UnicodeRangeSegment(int start, int end)
Parameters
start int
end int
Methods
| Name | Description |
|---|---|
| Equals (2 overloads) | No summary available. |
| GetHashCode | No summary available. |
| IsInRange | Determines if given value is inside the range segment. |
| Parse | Parses a Avalonia.Media.UnicodeRangeSegment. |
| ToString | No summary available. |
Equals overloads
Equals Method
public bool Equals(Avalonia.Media.UnicodeRangeSegment other)
Parameters
other Avalonia.Media.UnicodeRangeSegment
Returns
bool
Equals Method
public bool Equals(object obj)
Parameters
obj object
Returns
bool
GetHashCode Method
public int GetHashCode()
Returns
int
IsInRange Method
Determines if given value is inside the range segment.
public bool IsInRange(int value)
Parameters
value int
The value to verify.
Returns
bool
true If given value is inside the range segment, false otherwise.
Parse Method
Parses a Avalonia.Media.UnicodeRangeSegment.
public Avalonia.Media.UnicodeRangeSegment Parse(string s)
Parameters
s string
The string to parse.
Returns
Avalonia.Media.UnicodeRangeSegment
The parsed Avalonia.Media.UnicodeRangeSegment.
Exceptions
ToString Method
public string ToString()
Returns
string
Properties
End Property
Get the end of the segment.
public int End { get; set; }
Start Property
Get the start of the segment.
public int Start { get; set; }