SpreadsheetGear - Create a workbookview by code -
How do I create a workbook using the spreadsheet program with code? I do not want to use the workbook view control on the form, I want to create it dynamically, then keep it under a tab control with the code.
You create a workbook view object and add it to the tab page control.
Spreadsheetsgear Windows.form. See Workbook Workbook 1 = New SpreadsheetGear Forms.WorkbookView (); TabControl1.TabPages [0] .Controls.Add (workbookView1);
Comments
Post a Comment