Aspose.Words.Examples.CSharp.Programming_Documents.Working_With_Document.DocumentBuilderMovingCursor.MoveToTableCell C# (CSharp) Method

MoveToTableCell() public static method

public static MoveToTableCell ( string dataDir ) : void
dataDir string
return void
        public static void MoveToTableCell(string dataDir)
        {
            // ExStart:DocumentBuilderMoveToTableCell
            Document doc = new Document(dataDir + "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:DocumentBuilderMoveToTableCell               
        }
        public static void MoveToBookmark(string dataDir)