Gets whether the character at specified index is just a data without meaning on grammar.

Namespace: Sgry.Azuki
Assembly: Azuki (in Azuki.dll) Version: 1.7.13.40248

Syntax

C#
public bool IsCDATA(
	int index
)
Visual Basic
Public Function IsCDATA ( 
	index As Integer
) As Boolean

Parameters

index
Type: System..::..Int32
The index of the character to examine.

Return Value

Type: Boolean
Whether the character is part of a character data or not.

Remarks

This method gets whether the character at specified index is just a character data without meaning on grammar. 'Character data' here means text data which is not a part of the grammar. Example of character data is comment or string literal in programming languages.

See Also