[]
Appends an interval of UTF-32 characters (code points).
public Utf32CodeSet Append(int firstCode, int lastCode)
Public Function Append(firstCode As Integer, lastCode As Integer) As Utf32CodeSet
Type | Name | Description |
---|---|---|
int | firstCode | The first UTF-32 character (code point) of the interval. |
int | lastCode | The last UTF-32 character (code point) of the interval. |
Type | Description |
---|---|
Utf32CodeSet | The current instance of Utf32CodeSet. |
Appends a named range of Unicode characters.
public Utf32CodeSet Append(UnicodeBlock unicodeBlock)
Public Function Append(unicodeBlock As UnicodeBlock) As Utf32CodeSet
Type | Name | Description |
---|---|---|
UnicodeBlock | unicodeBlock | The named range of Unicode characters. |
Type | Description |
---|---|
Utf32CodeSet | The current instance of Utf32CodeSet. |
Appends several named ranges of Unicode characters.
public Utf32CodeSet Append(params UnicodeBlock[] unicodeBlocks)
Public Function Append(ParamArray unicodeBlocks As UnicodeBlock()) As Utf32CodeSet
Type | Name | Description |
---|---|---|
UnicodeBlock[] | unicodeBlocks | An array of Unicode blocks to append. |
Type | Description |
---|---|
Utf32CodeSet | The current instance of Utf32CodeSet. |