TableEntryHandleExtensions.TryCreateToolTip Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.