VintaSoft Imaging .NET SDK 15.1: Documentation for .NET developer
Vintasoft.Imaging.FormsProcessing.FormRecognition.Omr Namespace / OmrFieldTemplateTable Class / CellValues Property
Syntax Remarks Requirements SeeAlso
In This Topic
CellValues Property (OmrFieldTemplateTable)
In This Topic
Gets the two-dimensional array of string values that correspond to cells of the table.
Syntax
'Declaration

<DescriptionAttribute("The two-dimensional array of string values that correspond to cells of the table.")>
Public ReadOnly Property CellValues As System.String[,]

[Description("The two-dimensional array of string values that correspond to cells of the table.")]
public System.String[,] CellValues { get; }

Remarks

The string values of the two-dimensional array correspond to the table cells. When recognized, values that correspond to marked cells will be concatenated using specified separators (CellSeparator and SegmentSeparator) giving the value of the recognized table.
For example, consider multichoice questionnaire with 3 questions each having choice set from "A" to "E". Let's fill every row of the CellValues with letters from "A" to "E", set the CellSeparator to "+" and the SegmentSeparator to ";". Assume that first answer is "B", second is "A,C" and third is "B,C,E". Then the recognized value will be "B;A+C;B+C+E".

Requirements

Target Platforms: .NET 10; .NET 9; .NET 8; .NET 7; .NET 6; .NET Framework 4.8, 4.7, 4.6, 4.5, 4.0, 3.5

See Also