Type a page name and press Enter. You'll jump to the page if it exists, or you can create it if it doesn't.
To create a page in a module other than Enums, prefix the name with the module name and a period.
CHUNK_BREAKTYPE (Enums)
.
C# Definition:
/// <summary>
/// Enumerates the different breaking types that occur between
/// chunks of text read out by the FileFilter.
/// </summary>
enum CHUNK_BREAKTYPE
{
/// <summary>
/// No break is placed between the current chunk and the previous chunk.
/// The chunks are glued together.
/// </summary>
CHUNK_NO_BREAK = 0,
/// <summary>
/// A word break is placed between this chunk and the previous chunk that
/// had the same attribute.
/// Use of CHUNK_EOW should be minimized because the choice of word
/// breaks is language-dependent,
/// so determining word breaks is best left to the search engine.
/// </summary>
CHUNK_EOW = 1,
/// <summary>
/// A sentence break is placed between this chunk and the previous chunk
/// that had the same attribute.
/// </summary>
CHUNK_EOS = 2,
/// <summary>
/// A paragraph break is placed between this chunk and the previous chunk
/// that had the same attribute.
/// </summary>
CHUNK_EOP = 3,
/// <summary>
/// A chapter break is placed between this chunk and the previous chunk
/// that had the same attribute.
/// </summary>
CHUNK_EOC = 4
}
VB Definition:
#Region "CHUNK_BREAKTYPE Enumeration Definition"
''' <summary>
''' Enumerates the different breaking types that occur between
''' chunks of text read out by the FileFilter.
''' </summary>
Public Enum CHUNK_BREAKTYPE
' <summary>
' No break is placed between the current chunk and the previous chunk.
' The chunks are glued together.
' </summary>
CHUNK_NO_BREAK = 0
' <summary>
' A word break is placed between this chunk and the previous chunk that
' had the same attribute.
' Use of CHUNK_EOW should be minimized because the choice of word
' breaks is language-dependent
' so determining word breaks is best left to the search engine.
' </summary>
CHUNK_EOW = 1
' <summary>
' A sentence break is placed between this chunk and the previous chunk
' that had the same attribute.
' </summary>
CHUNK_EOS = 2
' <summary>
' A paragraph break is placed between this chunk and the previous chunk
' that had the same attribute.
' </summary>
CHUNK_EOP = 3
' <summary>
' A chapter break is placed between this chunk and the previous chunk
' that had the same attribute.
' </summary>
CHUNK_EOC = 4
End Enum
#End Region
Notes:
None.
Please edit this page!
Do you have...
helpful tips?
corrections to the existing content?
additional languages you want to include?
Select "Edit This Page" on the right hand toolbar and edit it!