| Visual Basic (Declaration) | |
|---|---|
Public Property CellType As OcrZoneType | |
| Visual Basic (Usage) | Copy Code |
|---|---|
Dim instance As OcrZoneCell Dim value As OcrZoneType instance.CellType = value value = instance.CellType | |
| C# | |
|---|---|
public OcrZoneType CellType {get; set;} | |
| C++/CLI | |
|---|---|
public: property OcrZoneType CellType { OcrZoneType get(); void set ( OcrZoneType value); } | |
Property Value
An OcrZoneType enumeration member that specifies the type of the cell. Default value is OcrZoneType.Text.For an example, refer to IOcrTableZoneManager
Currently, only the following cell types are supported: OcrZoneType.Text, OcrZoneType.VerticalText, OcrZoneType.LeftRotatedText and OcrZoneType.RightRotatedText. Setting any other type will result in an exception.
To get a list of cell types supported by this IOcrEngine, use IOcrTableZoneManager.GetSupportedCellTypes.
Target Platforms: Microsoft .NET Framework 2.0, Windows 2000, Windows XP, Windows Server 2003 family, Windows Server 2008 family, Windows Vista, Windows 7
Copy Code