Click or drag to resize
DataRegion Class
DataRegion class represents a DataRegion.
Inheritance Hierarchy
SystemObject
  Aceoffix.WordReaderDataRegion

Namespace: Aceoffix.WordReader
Assembly: Aceoffix (in Aceoffix.dll) Version: 5.0.0.1
Syntax
public class DataRegion

The DataRegion type exposes the following members.

Methods
  NameDescription
Public methodOpenShape
Opens the specified shape and returns a Shape object.
Public methodOpenTable
Opens the specified table and returns a Table object.
Top
Properties
  NameDescription
Public propertyFileBytes
Gets the content fragment contained in DataRegion in Word binary format.
Public propertyName
Gets the name of the DataRegion.
Public propertyShapes
Gets the Shape collection contained in DataRegion.
Public propertyTables
Gets the Table collection contained in DataRegion.
Public propertyValue
Gets the value of the DataRegion.
Top
Remarks

Representing a DataRegion, DataRegion class is used to extract data from the DataRegion. You can only call the OpenDataRegion(String) method to get the DataRegion object.

In Word document, developer can define any range of selection as a DataRegion object by inserting a bookmark with the prefix name "ACE_". In other words, the DataRegion is a bookmark object whose name begins with "ACE_" in Word document.

See Also