Beispiel #1
0
 public SmartsheetObject(SmartsheetHttpClient client)
 {
     this._Client = client;
 }
 public Sheet(SmartsheetHttpClient client, string sheetName = "", IList <Column> columns = null) : base(client)
 {
     this.EffectiveAttachmentOptions = new List <string>();
     this.Columns = new List <Column>();
     this.Rows    = new List <Row>();
 }