Table of Contents

Interface IWordBreak

Namespace
Alternet.Editor.Wpf
Assembly
Alternet.Editor.Wpf.v9.dll

Represents properties and methods used to separate words within Edit control content.

public interface IWordBreak

Properties

DelimiterString

When implemented by a class, gets or sets Delimiters as a single string.

Delimiters

When implemented by a class, gets or sets an array of characters used as delimiters between words in the text.

Methods

GetTextAt(Point)

When implemented by a class, returns word at the specific text position.

GetTextAt(int, int)

When implemented by a class, returns word at the specific text position.

GetWord(int, int, out int, out int)

When implemented by a class, returns word start and end, if there is word at the specified position.

GetWord(string, int, out int, out int)

When implemented by a class, returns word start and end, if there is word at the specified position.

GetWord(string, int, out int, out int, char[])

When implemented by a class, returns word start and end, if there is word at the specified position.

GetWord(string, int, out int, out int, Hashtable)

When implemented by a class, returns word start and end, if there is word at the specified position.

IsDelimiter(char)

When implemented by a class, indicates whether the specified character is delimiter character.

IsDelimiter(int, int)

When implemented by a class, indicates whether the character at the specific position of the string collection is delimiter character.

IsDelimiter(string, int)

When implemented by a class, indicates whether the character at the specific position of given string is a delimiter character.

IsWhitespace(string, int)

When implemented by a class, indicates whether the character at the specific position of given string is a whitespace character.

ResetDelimiters()

When implemented by a class, resets the Delimiters to the default value.