Class: Google::Apis::SheetsV4::DimensionProperties
- Inherits:
-
Object
- Object
- Google::Apis::SheetsV4::DimensionProperties
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/sheets_v4/classes.rb,
generated/google/apis/sheets_v4/representations.rb,
generated/google/apis/sheets_v4/representations.rb
Overview
Properties about a dimension.
Instance Attribute Summary collapse
-
#data_source_column_reference ⇒ Google::Apis::SheetsV4::DataSourceColumnReference
An unique identifier that references a data source column.
-
#developer_metadata ⇒ Array<Google::Apis::SheetsV4::DeveloperMetadata>
The developer metadata associated with a single row or column.
-
#hidden_by_filter ⇒ Boolean
(also: #hidden_by_filter?)
True if this dimension is being filtered.
-
#hidden_by_user ⇒ Boolean
(also: #hidden_by_user?)
True if this dimension is explicitly hidden.
-
#pixel_size ⇒ Fixnum
The height (if a row) or width (if a column) of the dimension in pixels.
Instance Method Summary collapse
-
#initialize(**args) ⇒ DimensionProperties
constructor
A new instance of DimensionProperties.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ DimensionProperties
Returns a new instance of DimensionProperties.
5016 5017 5018 |
# File 'generated/google/apis/sheets_v4/classes.rb', line 5016 def initialize(**args) update!(**args) end |
Instance Attribute Details
#data_source_column_reference ⇒ Google::Apis::SheetsV4::DataSourceColumnReference
An unique identifier that references a data source column.
Corresponds to the JSON property dataSourceColumnReference
4992 4993 4994 |
# File 'generated/google/apis/sheets_v4/classes.rb', line 4992 def data_source_column_reference @data_source_column_reference end |
#developer_metadata ⇒ Array<Google::Apis::SheetsV4::DeveloperMetadata>
The developer metadata associated with a single row or column.
Corresponds to the JSON property developerMetadata
4997 4998 4999 |
# File 'generated/google/apis/sheets_v4/classes.rb', line 4997 def @developer_metadata end |
#hidden_by_filter ⇒ Boolean Also known as:
True if this dimension is being filtered. This field is read-only.
Corresponds to the JSON property hiddenByFilter
5002 5003 5004 |
# File 'generated/google/apis/sheets_v4/classes.rb', line 5002 def hidden_by_filter @hidden_by_filter end |
#hidden_by_user ⇒ Boolean Also known as:
True if this dimension is explicitly hidden.
Corresponds to the JSON property hiddenByUser
5008 5009 5010 |
# File 'generated/google/apis/sheets_v4/classes.rb', line 5008 def hidden_by_user @hidden_by_user end |
#pixel_size ⇒ Fixnum
The height (if a row) or width (if a column) of the dimension in pixels.
Corresponds to the JSON property pixelSize
5014 5015 5016 |
# File 'generated/google/apis/sheets_v4/classes.rb', line 5014 def pixel_size @pixel_size end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5021 5022 5023 5024 5025 5026 5027 |
# File 'generated/google/apis/sheets_v4/classes.rb', line 5021 def update!(**args) @data_source_column_reference = args[:data_source_column_reference] if args.key?(:data_source_column_reference) @developer_metadata = args[:developer_metadata] if args.key?(:developer_metadata) @hidden_by_filter = args[:hidden_by_filter] if args.key?(:hidden_by_filter) @hidden_by_user = args[:hidden_by_user] if args.key?(:hidden_by_user) @pixel_size = args[:pixel_size] if args.key?(:pixel_size) end |