IWpfTableEntry Interface

Definition

Important

This API is not CLS-compliant.

Extension of the IWpfTableEntry that allows an entry provider to override the default behavior for what gets displayed for an entry in a particular column.

public interface class IWpfTableEntry : Microsoft::VisualStudio::Shell::TableManager::ITableEntry
public interface class IWpfTableEntry : Microsoft::VisualStudio::Shell::TableManager::ITableEntry
__interface IWpfTableEntry : Microsoft::VisualStudio::Shell::TableManager::ITableEntry
[System.CLSCompliant(false)]
public interface IWpfTableEntry : Microsoft.VisualStudio.Shell.TableManager.ITableEntry
public interface IWpfTableEntry : Microsoft.VisualStudio.Shell.TableManager.ITableEntry
[<System.CLSCompliant(false)>]
type IWpfTableEntry = interface
    interface ITableEntry
type IWpfTableEntry = interface
    interface ITableEntry
Public Interface IWpfTableEntry
Implements ITableEntry
Derived
Attributes
Implements

Remarks

The TryCreate...() methods for entries are called before using the equivalent method from the column definition.

Properties

Identity

The identifier.

(Inherited from ITableEntry)

Methods

CanCreateDetailsContent()

Does the entry have details content that can be displayed?

CanSetValue(String)

Can the data associated with the specified column be set?

(Inherited from ITableEntry)
TryCreateColumnContent(String, Boolean, FrameworkElement)

Get the FrameworkElement for the entry and columnName.

TryCreateDetailsContent(FrameworkElement)

Get the details content for the entry so that it can be displayed in the table control.

TryCreateDetailsStringContent(String)

Get the string equivalent of the details content for the entry (used for search and copy and paste).

TryCreateImageContent(String, Boolean, ImageMoniker)

Get the ImageMoniker for the entry and columnName.

TryCreateStringContent(String, Boolean, Boolean, String)

Get the string for the entry and columnName.

TryCreateToolTip(String, Object)

Get the tooltip for the entry and columnName.

TryGetValue(String, Object)

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

(Inherited from ITableEntry)
TrySetValue(String, Object)

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

(Inherited from ITableEntry)

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