DataTableChange
public struct DataTableChange : CustomStringConvertible
DataTable change for inline editing
-
row index; rowIndex starts from header if it exists
Declaration
Swift
public let rowIndex: Int
-
column index
Declaration
Swift
public let columnIndex: Int
-
value type for DataTableChange
See moreDeclaration
Swift
public enum ValueType
-
value type
Declaration
Swift
public let value: ValueType
-
Undocumented
Declaration
Swift
public let text: String
-
the selected index for DataListItem
Declaration
Swift
public let selectedIndex: Int?
-
init
Declaration
Swift
public init(rowIndex: Int, columnIndex: Int, value: ValueType, text: String, selectedIndex: Int? = nil)
-
debug description
Declaration
Swift
public var description: String { get }