Hide Table of Contents

Get the Total Number of Columns and Rows in a Table Example (C#)

This example shows how to get the total number of columns and rows (visible and hidden) in a table annotation.

//--------------------------------------------------------------------------
// Preconditions: Open a drawing that contains a hole table
// with multiple columns and rows.
//
// Postconditions: Inspect the Immediate Window.
//--------------------------------------------------------------------------
using Microsoft.VisualBasic;
using System;
using System.Collections;
using System.Collections.Generic;
using System.Data;
using System.Diagnostics;
using SolidWorks.Interop.sldworks;
using SolidWorks.Interop.swconst;
namespace AnnotationCounts_CSharp.csproj
{
    
partial class SolidWorksMacro
    {

        
public void ProcessTable(SldWorks swApp, ModelDoc2 swModel, TableAnnotation swTable)
        {
            
Annotation swAnn = default(Annotation);
            
int nNumCol = 0;
            
int nNumRow = 0;
            
int nTotalNumCol = 0;
            
int nTotalNumRow = 0;
            swAnn = (
Annotation)swTable.GetAnnotation();

            
// Show the name and type of table
            Debug.Print("    " + swAnn.GetName() + " <" + swTable.Type + ">");

            
// Get the visible counts
            nNumCol = swTable.ColumnCount;
            
Debug.Print("      Number of visible columns: " + nNumCol);
            nNumRow = swTable.RowCount;
            
Debug.Print("      Number of visible rows: " + nNumRow);

            
// Get the total (hidden + visible) counts
            nTotalNumCol = swTable.TotalColumnCount;
            
Debug.Print("      Total number of visible + hidden columns: " + nTotalNumCol);
            nTotalNumRow = swTable.TotalRowCount;
            
Debug.Print("      Total number of visible + hidden rows: " + nTotalNumRow);

            
// Hide the first row and column
            Debug.Print("");
            
Debug.Print("      First row and column are now hidden");
            
Debug.Print("");
            swTable.set_RowHidden(0,
true);
            swTable.set_ColumnHidden(0,
true);

            
// Get the visible counts
            nNumCol = swTable.ColumnCount;
            
Debug.Print("      Number of visible columns: " + nNumCol);
            nNumRow = swTable.RowCount;
            
Debug.Print("      Number of visible rows: " + nNumRow);

            
// Get the total (hidden + visible) counts
            nTotalNumCol = swTable.TotalColumnCount;
            
Debug.Print("      Total number of visible + hidden columns: " + nTotalNumCol);
            nTotalNumRow = swTable.TotalRowCount;
            
Debug.Print("      Total number of visible + hidden rows: " + nTotalNumRow);

        }


        
public void Main()
        {
            
ModelDoc2 swModel = default(ModelDoc2);
            
DrawingDoc swDraw = default(DrawingDoc);
            
View swView = default(View);
            
TableAnnotation swTable = default(TableAnnotation);

            swModel = (
ModelDoc2)swApp.ActiveDoc;
            swDraw = (
DrawingDoc)swModel;

            
Debug.Print("File = " + swModel.GetPathName());

            
// Get the first view
            swView = (View)swDraw.GetFirstView();

            
while ((swView != null))
            {
                
// Show the name of the view
                Debug.Print("View =   " + swView.Name);

                
// Get the first table annotation for this view
                swTable = swView.GetFirstTableAnnotation();

                
while ((swTable != null))
                {
                    ProcessTable(swApp, swModel, swTable);

                    
// Get next table annotation for this view
                    swTable = swTable.GetNext();

                }

                
// Get the next view
                swView = (View)swView.GetNextView();

            }

        }


        
public SldWorks swApp;

    }



}



Provide feedback on this topic

SOLIDWORKS welcomes your feedback concerning the presentation, accuracy, and thoroughness of the documentation. Use the form below to send your comments and suggestions about this topic directly to our documentation team. The documentation team cannot answer technical support questions. Click here for information about technical support.

* Required

 
*Email:  
Subject:   Feedback on Help Topics
Page:   Get the Total Number of Columns and Rows in a Table Example (C#)
*Comment:  
*   I acknowledge I have read and I hereby accept the privacy policy under which my Personal Data will be used by Dassault Systèmes

Print Topic

Select the scope of content to print:

x

We have detected you are using a browser version older than Internet Explorer 7. For optimized display, we suggest upgrading your browser to Internet Explorer 7 or newer.

 Never show this message again
x

Web Help Content Version: API Help (English only) 2013 SP05

To disable Web help from within SOLIDWORKS and use local help instead, click Help > Use SOLIDWORKS Web Help.

To report problems encountered with the Web help interface and search, contact your local support representative. To provide feedback on individual help topics, use the “Feedback on this topic” link on the individual topic page.