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)


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

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

Instance Attribute Details

#colInteger (readonly)

Returns the value of attribute col.

Returns:

  • (Integer)


1656
1657
1658
# File 'sig/types.rbs', line 1656

def col
  @col
end

#fromString (readonly)

Returns the value of attribute from.

Returns:

  • (String)


1657
1658
1659
# File 'sig/types.rbs', line 1657

def from
  @from
end

#rowInteger (readonly)

Returns the value of attribute row.

Returns:

  • (Integer)


1655
1656
1657
# File 'sig/types.rbs', line 1655

def row
  @row
end

#toString (readonly)

Returns the value of attribute to.

Returns:

  • (String)


1658
1659
1660
# File 'sig/types.rbs', line 1658

def to
  @to
end