Class: Google::Apis::SheetsV4::GridProperties

Inherits:
Object
  • Object
show all
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 of a grid.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ GridProperties

Returns a new instance of GridProperties.



5033
5034
5035
# File 'generated/google/apis/sheets_v4/classes.rb', line 5033

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

Instance Attribute Details

#column_countFixnum

The number of columns in the grid. Corresponds to the JSON property columnCount

Returns:

  • (Fixnum)


5015
5016
5017
# File 'generated/google/apis/sheets_v4/classes.rb', line 5015

def column_count
  @column_count
end

#frozen_column_countFixnum

The number of columns that are frozen in the grid. Corresponds to the JSON property frozenColumnCount

Returns:

  • (Fixnum)


5025
5026
5027
# File 'generated/google/apis/sheets_v4/classes.rb', line 5025

def frozen_column_count
  @frozen_column_count
end

#frozen_row_countFixnum

The number of rows that are frozen in the grid. Corresponds to the JSON property frozenRowCount

Returns:

  • (Fixnum)


5020
5021
5022
# File 'generated/google/apis/sheets_v4/classes.rb', line 5020

def frozen_row_count
  @frozen_row_count
end

#hide_gridlinesBoolean Also known as: hide_gridlines?

True if the grid isn't showing gridlines in the UI. Corresponds to the JSON property hideGridlines

Returns:

  • (Boolean)


5030
5031
5032
# File 'generated/google/apis/sheets_v4/classes.rb', line 5030

def hide_gridlines
  @hide_gridlines
end

#row_countFixnum

The number of rows in the grid. Corresponds to the JSON property rowCount

Returns:

  • (Fixnum)


5010
5011
5012
# File 'generated/google/apis/sheets_v4/classes.rb', line 5010

def row_count
  @row_count
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



5038
5039
5040
5041
5042
5043
5044
# File 'generated/google/apis/sheets_v4/classes.rb', line 5038

def update!(**args)
  @row_count = args[:row_count] if args.key?(:row_count)
  @column_count = args[:column_count] if args.key?(:column_count)
  @frozen_row_count = args[:frozen_row_count] if args.key?(:frozen_row_count)
  @frozen_column_count = args[:frozen_column_count] if args.key?(:frozen_column_count)
  @hide_gridlines = args[:hide_gridlines] if args.key?(:hide_gridlines)
end