google_api_sheets v0.0.1 GoogleApi.Sheets.V4.Model.UpdateBordersRequest View Source

Updates the borders of a range. If a field is not set in the request, that means the border remains as-is. For example, with two subsequent UpdateBordersRequest: 1. range: A1:A5 `{ top: RED, bottom: WHITE }` 2. range: A1:A5 `{ left: BLUE }` That would result in A1:A5 having a borders of `{ top: RED, bottom: WHITE, left: BLUE }`. If you want to clear a border, explicitly set the style to NONE.

Attributes

  • bottom (Border): The border to put at the bottom of the range. Defaults to: null.
  • innerHorizontal (Border): The horizontal border to put within the range. Defaults to: null.
  • innerVertical (Border): The vertical border to put within the range. Defaults to: null.
  • left (Border): The border to put at the left of the range. Defaults to: null.
  • range (GridRange): The range whose borders should be updated. Defaults to: null.
  • right (Border): The border to put at the right of the range. Defaults to: null.
  • top (Border): The border to put at the top of the range. Defaults to: null.