FILTERREGION (Structures)
Last changed: ebewley@bigfoot.com-148.126.100.80

.
Summary
TODO - a short description

C# Definition:

struct FILTERREGION {
   public int idChunk;
   public int cwcStart;
   public int cwcExtent;
}

VB Definition:

#Region "FILTERREGION Structure Definition"

  '''  <summary>
  '''   The FILTERREGION structure describes the position and extent
  '''   of a specified portion of text within an object. This
  '''   structure is used by the IFilter::BindRegion method.
  '''  </summary>
  <StructLayout(LayoutKind.Sequential)> _
  Public Structure FILTERREGION
    '  <summary>
    '   Chunk ID.
    '  </summary>
    Public idChunk As UInt32

    '  <summary>
    '   Beginning of the region, specified as an offset from the beginning of the chunk.
    '  </summary>
    Public cwcStart As UInt32

    '  <summary>
    '   Extent of the region, specified as a number of Unicode characters.
    '  </summary>
    Public cwcExtent As UInt32
  End Structure

#End Region

User-Defined Field Types:

None.

Notes:

None.

Documentation