Class: Xberg::CellChange

Inherits:
Object
  • Object
show all
Defined in:
sig/types.rbs

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeCellChange

Returns a new instance of CellChange.

Parameters:

  • row: (Integer)
  • col: (Integer)
  • from: (String)
  • to: (String)


136
# File 'sig/types.rbs', line 136

def initialize: (row: Integer, col: Integer, from: String, to: String) -> void

Instance Attribute Details

#colInteger (readonly)

Returns the value of attribute col.

Returns:

  • (Integer)


132
133
134
# File 'sig/types.rbs', line 132

def col
  @col
end

#fromString (readonly)

Returns the value of attribute from.

Returns:

  • (String)


133
134
135
# File 'sig/types.rbs', line 133

def from
  @from
end

#rowInteger (readonly)

Returns the value of attribute row.

Returns:

  • (Integer)


131
132
133
# File 'sig/types.rbs', line 131

def row
  @row
end

#toString (readonly)

Returns the value of attribute to.

Returns:

  • (String)


134
135
136
# File 'sig/types.rbs', line 134

def to
  @to
end