Represents individual user settings for a specific sheet. User settings may be updated even on sheets where the current user only has read access (e.g. viewer permissions or a read-only sheet).
Example #1
0
 /// <summary>
 /// Sets the Sheet's user settings.
 /// </summary>
 /// <param name="userSettings"> the userSettings </param>
 /// <returns> the update sheet builder </returns>
 public virtual UpdateSheetBuilder SetUserSettings(SheetUserSettings userSettings)
 {
     this.userSettings = userSettings;
     return(this);
 }