As described in the comment in the below code snippet, I'm having problems accessing table text with the methods show in various examples and help files. How do I go about getting to the text in tables via c# ?? Thanks for ( int n = 0; n <= myTable.RowCount; n++) { //Property, indexer, or event 'Text' is not supported by the language; try directly calling accessor methods 'SolidWorks.Interop.sldworks.ITableAnnotation.get_Text(int, int)' or 'SolidWorks.Interop.sldworks.ITableAnnotation.set_Text(int, int, string)' rowString = rowString + "|" + myTable.Text(m,n); }