TableEntryNavigateEventArgs Constructors
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.
Overloads
TableEntryNavigateEventArgs(Boolean) |
Creates new instance of TableEntryNavigateEventArgs. |
TableEntryNavigateEventArgs(Boolean, Boolean) |
Creates new instance of TableEntryNavigateEventArgs. |
TableEntryNavigateEventArgs(Boolean)
Creates 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
Indicates whether the navigation should open the document in the preview tab.
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.