ITableEntry Interface

Definition

An entry that corresponds to a row of data in a table control.

public interface class ITableEntry
public interface class ITableEntry
__interface ITableEntry
public interface ITableEntry
type ITableEntry = interface
Public Interface ITableEntry
Derived

Remarks

All methods on this interface can be called from either the main thread or a background thread.

Properties

Identity

The identifier.

Methods

CanSetValue(String)

Can the data associated with the specified column be set?

TryGetValue(String, Object)

Get the data associated with the specified column (if this entry has data associated with that column).

TrySetValue(String, Object)

Set the data associated with the specified column (if this entry has data associated with that column).

Extension Methods

TryGetValue<T>(ITableEntry, String, T)

Try to get data of type T from an entry.

TryGetValue<T>(ITableEntry, String, T, T)

Try to get data of type T from an entry.

TryGetValue<T>(ITableEntry, String, T, Func<T>)

Try to get data of type T from an entry.

Applies to