TableEntryNavigateEventArgs Constructors

Definition

Overloads

TableEntryNavigateEventArgs(Boolean)

Creates a new instance of TableEntryNavigateEventArgs.

TableEntryNavigateEventArgs(Boolean, Boolean)

Creates new instance of TableEntryNavigateEventArgs.

TableEntryNavigateEventArgs(Boolean)

Creates a new instance of TableEntryNavigateEventArgs.

public:
 TableEntryNavigateEventArgs(bool isPreview);
public:
 TableEntryNavigateEventArgs(bool isPreview);
 TableEntryNavigateEventArgs(bool isPreview);
public TableEntryNavigateEventArgs (bool isPreview);
new Microsoft.VisualStudio.Shell.TableControl.TableEntryNavigateEventArgs : bool -> Microsoft.VisualStudio.Shell.TableControl.TableEntryNavigateEventArgs
Public Sub New (isPreview As Boolean)

Parameters

isPreview
Boolean

True if this navigation is a preview.

Remarks

The document containing the entry will be activated if isPreview is false.

Applies to

TableEntryNavigateEventArgs(Boolean, Boolean)

Creates new instance of TableEntryNavigateEventArgs.

public:
 TableEntryNavigateEventArgs(bool isPreview, bool shouldActivate);
public TableEntryNavigateEventArgs (bool isPreview, bool shouldActivate);
new Microsoft.VisualStudio.Shell.TableControl.TableEntryNavigateEventArgs : bool * bool -> Microsoft.VisualStudio.Shell.TableControl.TableEntryNavigateEventArgs
Public Sub New (isPreview As Boolean, shouldActivate As Boolean)

Parameters

isPreview
Boolean

Indicates whether the navigation should open the document in the preview tab.

shouldActivate
Boolean

ndicates whether the navigation should activate document containing the entry.

Applies to