Class: Google::Apis::SheetsV4::DimensionProperties

Inherits:
Object
  • Object
show all
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

Properties about a dimension.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ DimensionProperties

Returns a new instance of DimensionProperties.



5104
5105
5106
# File 'lib/google/apis/sheets_v4/classes.rb', line 5104

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#data_source_column_referenceGoogle::Apis::SheetsV4::DataSourceColumnReference

An unique identifier that references a data source column. Corresponds to the JSON property dataSourceColumnReference



5080
5081
5082
# File 'lib/google/apis/sheets_v4/classes.rb', line 5080

def data_source_column_reference
  @data_source_column_reference
end

#developer_metadataArray<Google::Apis::SheetsV4::DeveloperMetadata>

The developer metadata associated with a single row or column. Corresponds to the JSON property developerMetadata



5085
5086
5087
# File 'lib/google/apis/sheets_v4/classes.rb', line 5085

def 
  @developer_metadata
end

#hidden_by_filterBoolean Also known as: hidden_by_filter?

True if this dimension is being filtered. This field is read-only. Corresponds to the JSON property hiddenByFilter

Returns:

  • (Boolean)


5090
5091
5092
# File 'lib/google/apis/sheets_v4/classes.rb', line 5090

def hidden_by_filter
  @hidden_by_filter
end

#hidden_by_userBoolean Also known as: hidden_by_user?

True if this dimension is explicitly hidden. Corresponds to the JSON property hiddenByUser

Returns:

  • (Boolean)


5096
5097
5098
# File 'lib/google/apis/sheets_v4/classes.rb', line 5096

def hidden_by_user
  @hidden_by_user
end

#pixel_sizeFixnum

The height (if a row) or width (if a column) of the dimension in pixels. Corresponds to the JSON property pixelSize

Returns:

  • (Fixnum)


5102
5103
5104
# File 'lib/google/apis/sheets_v4/classes.rb', line 5102

def pixel_size
  @pixel_size
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



5109
5110
5111
5112
5113
5114
5115
# File 'lib/google/apis/sheets_v4/classes.rb', line 5109

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