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

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 of a grid.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GridProperties

Returns a new instance of GridProperties.



6069
6070
6071
# File 'lib/google/apis/sheets_v4/classes.rb', line 6069

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)


6034
6035
6036
# File 'lib/google/apis/sheets_v4/classes.rb', line 6034

def column_count
  @column_count
end

#column_group_control_afterBoolean Also known as: column_group_control_after?

True if the column grouping control toggle is shown after the group. Corresponds to the JSON property columnGroupControlAfter

Returns:

  • (Boolean)


6039
6040
6041
# File 'lib/google/apis/sheets_v4/classes.rb', line 6039

def column_group_control_after
  @column_group_control_after
end

#frozen_column_countFixnum

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

Returns:

  • (Fixnum)


6045
6046
6047
# File 'lib/google/apis/sheets_v4/classes.rb', line 6045

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)


6050
6051
6052
# File 'lib/google/apis/sheets_v4/classes.rb', line 6050

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)


6055
6056
6057
# File 'lib/google/apis/sheets_v4/classes.rb', line 6055

def hide_gridlines
  @hide_gridlines
end

#row_countFixnum

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

Returns:

  • (Fixnum)


6061
6062
6063
# File 'lib/google/apis/sheets_v4/classes.rb', line 6061

def row_count
  @row_count
end

#row_group_control_afterBoolean Also known as: row_group_control_after?

True if the row grouping control toggle is shown after the group. Corresponds to the JSON property rowGroupControlAfter

Returns:

  • (Boolean)


6066
6067
6068
# File 'lib/google/apis/sheets_v4/classes.rb', line 6066

def row_group_control_after
  @row_group_control_after
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



6074
6075
6076
6077
6078
6079
6080
6081
6082
# File 'lib/google/apis/sheets_v4/classes.rb', line 6074

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