C# Class MigraDoc.DocumentObjectModel.Tables.Row

Represents a row of a table.
Inheritance: DocumentObject, IVisitable
Mostra file Open project: DavidS/MigraDoc Class Usage Examples

Private Properties

Property Type Description
Row System
Serialize void

Public Methods

Method Description
Clone ( ) : Row

Creates a deep copy of this object.

IVisitable ( MigraDoc.DocumentObjectModel.Visitors.DocumentObjectVisitor visitor, bool visitChildren ) : void

Allows the visitor object to visit the document object and it's child objects.

Row ( ) : System

Initializes a new instance of the Row class.

this ( int index ) : MigraDoc.DocumentObjectModel.Tables.Cell

Gets a cell by its column index. The first cell has index 0.

Protected Methods

Method Description
DeepCopy ( ) : object

Implements the deep copy of the object.

Private Methods

Method Description
Row ( DocumentObject parent ) : System

Initializes a new instance of the Row class with the specified parent.

Serialize ( Serializer serializer ) : void

Converts Row into DDL.

Method Details

Clone() public method

Creates a deep copy of this object.
public Clone ( ) : Row
return Row

DeepCopy() protected method

Implements the deep copy of the object.
protected DeepCopy ( ) : object
return object

IVisitable() public method

Allows the visitor object to visit the document object and it's child objects.
public IVisitable ( MigraDoc.DocumentObjectModel.Visitors.DocumentObjectVisitor visitor, bool visitChildren ) : void
visitor MigraDoc.DocumentObjectModel.Visitors.DocumentObjectVisitor
visitChildren bool
return void

Row() public method

Initializes a new instance of the Row class.
public Row ( ) : System
return System

this() public method

Gets a cell by its column index. The first cell has index 0.
public this ( int index ) : MigraDoc.DocumentObjectModel.Tables.Cell
index int
return MigraDoc.DocumentObjectModel.Tables.Cell