Aspose.Words.Examples.CSharp.Programming_Documents.Working_with_Node.ExNode.TypedAccess C# (CSharp) Method

TypedAccess() public static method

public static TypedAccess ( ) : void
return void
        public static void TypedAccess()
        {
            // ExStart:TypedAccess
            Document doc = new Document();            
            Section section = doc.FirstSection;
            // Quick typed access to the Body child node of the Section.
            Body body = section.Body;
            // Quick typed access to all Table child nodes contained in the Body.
            TableCollection tables = body.Tables;

            foreach (Table table in tables)
            {
                // Quick typed access to the first row of the table.
                if (table.FirstRow != null)
                    table.FirstRow.Remove();

                // Quick typed access to the last row of the table.
                if (table.LastRow != null)
                    table.LastRow.Remove();
            }
            // ExEnd:TypedAccess
        }
        public static void CreateAndAddParagraphNode()