ApiExamples.ExDocumentBuilder.DocumentBuilderMoveToTableCell C# (CSharp) Method

DocumentBuilderMoveToTableCell() private method

private DocumentBuilderMoveToTableCell ( ) : void
return void
        public void DocumentBuilderMoveToTableCell()
        {
            //ExStart
            //ExFor:DocumentBuilder.MoveToCell
            //ExId:DocumentBuilderMoveToTableCell
            //ExSummary:Shows how to move a cursor position to the specified table cell.
            Document doc = new Document(MyDir + "DocumentBuilder.doc");
            DocumentBuilder builder = new DocumentBuilder(doc);

            // All parameters are 0-index. Moves to the 2nd table, 3rd row, 5th cell.
            builder.MoveToCell(1, 2, 4, 0);
            builder.Writeln("Hello World!");
            //ExEnd
        }
ExDocumentBuilder