Share via


TableEntryHandleExtensions.TryCreateToolTip Method

Definition

Helper to get the tool tip (if any) for a particular entry & column.

public:
[System::Runtime::CompilerServices::Extension]
 static bool TryCreateToolTip(Microsoft::VisualStudio::Shell::TableControl::ITableEntryHandle ^ entry, Microsoft::VisualStudio::Shell::TableControl::ITableColumnDefinition ^ column, [Runtime::InteropServices::Out] System::Object ^ % toolTip);
public static bool TryCreateToolTip (this Microsoft.VisualStudio.Shell.TableControl.ITableEntryHandle entry, Microsoft.VisualStudio.Shell.TableControl.ITableColumnDefinition column, out object toolTip);
static member TryCreateToolTip : Microsoft.VisualStudio.Shell.TableControl.ITableEntryHandle * Microsoft.VisualStudio.Shell.TableControl.ITableColumnDefinition * obj -> bool
<Extension()>
Public Function TryCreateToolTip (entry As ITableEntryHandle, column As ITableColumnDefinition, ByRef toolTip As Object) As Boolean

Parameters

entry
ITableEntryHandle

The entry.

column
ITableColumnDefinition

The column.

toolTip
Object

The tool tip.

Returns

Returns Boolean.

Remarks

This code first checks to see whether the entry provides that data directly and, if not, uses the converter associated with the column.

Applies to