UpdateBordersRequest class
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.
Constructors
- UpdateBordersRequest({Border? bottom, Border? innerHorizontal, Border? innerVertical, Border? left, GridRange? range, Border? right, Border? top})
- UpdateBordersRequest.fromJson(Map json_)
Properties
- bottom ↔ Border?
-
The border to put at the bottom of the range.
getter/setter pair
- hashCode → int
-
The hash code for this object.
no setterinherited
- innerHorizontal ↔ Border?
-
The horizontal border to put within the range.
getter/setter pair
- innerVertical ↔ Border?
-
The vertical border to put within the range.
getter/setter pair
- left ↔ Border?
-
The border to put at the left of the range.
getter/setter pair
- range ↔ GridRange?
-
The range whose borders should be updated.
getter/setter pair
- right ↔ Border?
-
The border to put at the right of the range.
getter/setter pair
- runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
- top ↔ Border?
-
The border to put at the top of the range.
getter/setter pair
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toJson(
) → Map< String, dynamic> -
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited