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)


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

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

Instance Attribute Details

#colInteger (readonly)

Returns the value of attribute col.

Returns:

  • (Integer)


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

def col
  @col
end

#fromString (readonly)

Returns the value of attribute from.

Returns:

  • (String)


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

def from
  @from
end

#rowInteger (readonly)

Returns the value of attribute row.

Returns:

  • (Integer)


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

def row
  @row
end

#toString (readonly)

Returns the value of attribute to.

Returns:

  • (String)


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

def to
  @to
end