C# Class dnSpy.Contracts.Hex.Adornments.HexToolTipProvider

Shows tooltips
Mostra file Open project: 0xd4d/dnSpy

Public Methods

Method Description
ClearToolTip ( ) : void

Closes the tooltip

ShowToolTip ( HexBufferSpan bufferSpan, HexSpanSelectionFlags flags, object toolTipContent ) : void

Shows a tooltip

ShowToolTip ( HexBufferSpan bufferSpan, HexSpanSelectionFlags flags, object toolTipContent, Microsoft.VisualStudio.Text.Adornments style ) : void

Shows a tooltip

ShowToolTip ( HexBufferSpanSelection span, object toolTipContent ) : void

Shows a tooltip

ShowToolTip ( HexBufferSpanSelection span, object toolTipContent, Microsoft.VisualStudio.Text.Adornments style ) : void

Shows a tooltip

Protected Methods

Method Description
HexToolTipProvider ( )

Constructor

Method Details

ClearToolTip() public abstract method

Closes the tooltip
public abstract ClearToolTip ( ) : void
return void

HexToolTipProvider() protected method

Constructor
protected HexToolTipProvider ( )

ShowToolTip() public method

Shows a tooltip
public ShowToolTip ( HexBufferSpan bufferSpan, HexSpanSelectionFlags flags, object toolTipContent ) : void
bufferSpan HexBufferSpan Buffer span
flags HexSpanSelectionFlags Selection flags
toolTipContent object Tooltip content
return void

ShowToolTip() public abstract method

Shows a tooltip
public abstract ShowToolTip ( HexBufferSpan bufferSpan, HexSpanSelectionFlags flags, object toolTipContent, Microsoft.VisualStudio.Text.Adornments style ) : void
bufferSpan HexBufferSpan Buffer span
flags HexSpanSelectionFlags Selection flags
toolTipContent object Tooltip content
style Microsoft.VisualStudio.Text.Adornments Popup style
return void

ShowToolTip() public method

Shows a tooltip
public ShowToolTip ( HexBufferSpanSelection span, object toolTipContent ) : void
span HexBufferSpanSelection Span and selection flags
toolTipContent object Tooltip content
return void

ShowToolTip() public method

Shows a tooltip
public ShowToolTip ( HexBufferSpanSelection span, object toolTipContent, Microsoft.VisualStudio.Text.Adornments style ) : void
span HexBufferSpanSelection Span and selection flags
toolTipContent object Tooltip content
style Microsoft.VisualStudio.Text.Adornments Popup style
return void