[]
Checks a string containing text and returns a list of spelling errors.
public CharRangeList CheckText(string text, int start, int length)
Type | Name | Description |
---|---|---|
string | text | Text to be spell-checked. |
int | start | Index of the character where to start checking. |
int | length | Length of the string to check. |
Type | Description |
---|---|
CharRangeList | List of CharRange objects that describe the spelling mistakes. |
Checks a string containing text and returns a list of spelling errors.
public CharRangeList CheckText(string text, int start)
Type | Name | Description |
---|---|---|
string | text | Text to be spell-checked. |
int | start | Index of the character where to start checking. |
Type | Description |
---|---|
CharRangeList | List of CharRange objects that describe the spelling mistakes. |
Checks a string containing text and returns a list of spelling errors.
public CharRangeList CheckText(string text)
Type | Name | Description |
---|---|---|
string | text | Text to be spell-checked. |
Type | Description |
---|---|
CharRangeList | List of CharRange objects that describe the spelling mistakes. |