var instance = new GC.Spread.Sheets.Worksheet(name); var value; // Type: any value = instance.setBindingPath(row, col, path);
Parameters
- row
- The row index.
- col
- The column index.
- path
- The binding path for the cell binding source.
var instance = new GC.Spread.Sheets.Worksheet(name); var value; // Type: any value = instance.setBindingPath(row, col, path);
var test = {name: "John", gender: "male"}; sheet.setBindingPath(0, 0, "name"); sheet.setBindingPath(0, 1, "gender"); sheet.setDataSource(new GC.Spread.Sheets.Bindings.CellBindingSource(test));