AODL.Document.Content.Tables.TableBuilder.CreateSpreadsheetTable C# (CSharp) Method

CreateSpreadsheetTable() public static method

Create a spreadsheet table.
public static CreateSpreadsheetTable ( AODL document, string tableName, string styleName ) : Table
document AODL The document.
tableName string Name of the table.
styleName string Name of the style.
return Table
		public static Table CreateSpreadsheetTable(AODL.Document.SpreadsheetDocuments.SpreadsheetDocument document, string tableName, string styleName)
		{
			return new Table(document, tableName, styleName);
		}