Class: Google::Apis::SheetsV4::PivotFilterCriteria
- Inherits:
-
Object
- Object
- Google::Apis::SheetsV4::PivotFilterCriteria
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/sheets_v4/classes.rb,
lib/google/apis/sheets_v4/representations.rb,
lib/google/apis/sheets_v4/representations.rb
Overview
Criteria for showing/hiding rows in a pivot table.
Instance Attribute Summary collapse
-
#condition ⇒ Google::Apis::SheetsV4::BooleanCondition
A condition that can evaluate to true or false.
-
#visible_by_default ⇒ Boolean
(also: #visible_by_default?)
Whether values are visible by default.
-
#visible_values ⇒ Array<String>
Values that should be included.
Instance Method Summary collapse
-
#initialize(**args) ⇒ PivotFilterCriteria
constructor
A new instance of PivotFilterCriteria.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ PivotFilterCriteria
Returns a new instance of PivotFilterCriteria.
7434 7435 7436 |
# File 'lib/google/apis/sheets_v4/classes.rb', line 7434 def initialize(**args) update!(**args) end |
Instance Attribute Details
#condition ⇒ Google::Apis::SheetsV4::BooleanCondition
A condition that can evaluate to true or false. BooleanConditions are used by
conditional formatting, data validation, and the criteria in filters.
Corresponds to the JSON property condition
7419 7420 7421 |
# File 'lib/google/apis/sheets_v4/classes.rb', line 7419 def condition @condition end |
#visible_by_default ⇒ Boolean Also known as: visible_by_default?
Whether values are visible by default. If true, the visible_values are ignored,
all values that meet condition (if specified) are shown. If false, values
that are both in visible_values and meet condition are shown.
Corresponds to the JSON property visibleByDefault
7426 7427 7428 |
# File 'lib/google/apis/sheets_v4/classes.rb', line 7426 def visible_by_default @visible_by_default end |
#visible_values ⇒ Array<String>
Values that should be included. Values not listed here are excluded.
Corresponds to the JSON property visibleValues
7432 7433 7434 |
# File 'lib/google/apis/sheets_v4/classes.rb', line 7432 def visible_values @visible_values end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
7439 7440 7441 7442 7443 |
# File 'lib/google/apis/sheets_v4/classes.rb', line 7439 def update!(**args) @condition = args[:condition] if args.key?(:condition) @visible_by_default = args[:visible_by_default] if args.key?(:visible_by_default) @visible_values = args[:visible_values] if args.key?(:visible_values) end |