Show / Hide Table of Contents

Class TableRow

A single row in a table.

Inheritance
object
TableRow
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.AidocumentService.Models
Assembly: OCI.DotNetSDK.Aidocument.dll
Syntax
public class TableRow

Properties

Cells

Declaration
[Required(ErrorMessage = "Cells is required.")]
[JsonProperty(PropertyName = "cells")]
public List<Cell> Cells { get; set; }
Property Value
Type Description
List<Cell>

The cells in the row.

Remarks

Required

In this article
Back to top