Table of Contents

Method IsDelimiter

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

IsDelimiter(string, int, Hashtable)

protected static bool IsDelimiter(string s, int pos, Hashtable delimTable)

Parameters

s string
pos int
delimTable Hashtable

Returns

bool

IsDelimiter(string, int)

Indicates whether the character at the specific position of given string is a delimiter character.

public virtual bool IsDelimiter(string s, int pos)

Parameters

s string

The string in which character should be tested.

pos int

The index of character in the given string.

Returns

bool

True if specified character is delimiter; otherwise false.

IsDelimiter(int, int)

Indicates whether the character at the specific position of the string collection is delimiter character.

public virtual bool IsDelimiter(int index, int pos)

Parameters

index int

The index of line in which character should be tested.

pos int

The index of character in the specific string.

Returns

bool

True if specified character is delimiter; otherwise false.

IsDelimiter(char)

Indicates whether the specified character is delimiter character.

public virtual bool IsDelimiter(char ch)

Parameters

ch char

The char value that should be tested.

Returns

bool

True if specified character is delimiter; otherwise false.

IsDelimiter(Hashtable, string, int)

protected bool IsDelimiter(Hashtable delims, string s, int pos)

Parameters

delims Hashtable
s string
pos int

Returns

bool