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)


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

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

Instance Attribute Details

#colInteger (readonly)

Returns the value of attribute col.

Returns:

  • (Integer)


1645
1646
1647
# File 'sig/types.rbs', line 1645

def col
  @col
end

#fromString (readonly)

Returns the value of attribute from.

Returns:

  • (String)


1646
1647
1648
# File 'sig/types.rbs', line 1646

def from
  @from
end

#rowInteger (readonly)

Returns the value of attribute row.

Returns:

  • (Integer)


1644
1645
1646
# File 'sig/types.rbs', line 1644

def row
  @row
end

#toString (readonly)

Returns the value of attribute to.

Returns:

  • (String)


1647
1648
1649
# File 'sig/types.rbs', line 1647

def to
  @to
end