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)


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

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

Instance Attribute Details

#colInteger (readonly)

Returns the value of attribute col.

Returns:

  • (Integer)


1727
1728
1729
# File 'sig/types.rbs', line 1727

def col
  @col
end

#fromString (readonly)

Returns the value of attribute from.

Returns:

  • (String)


1728
1729
1730
# File 'sig/types.rbs', line 1728

def from
  @from
end

#rowInteger (readonly)

Returns the value of attribute row.

Returns:

  • (Integer)


1726
1727
1728
# File 'sig/types.rbs', line 1726

def row
  @row
end

#toString (readonly)

Returns the value of attribute to.

Returns:

  • (String)


1729
1730
1731
# File 'sig/types.rbs', line 1729

def to
  @to
end