ModelSearchService.NavigateTo 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.
Navigates to target model item in the workflow designer and returns a Boolean that indicates whether navigation succeeds.
Overloads
NavigateTo(Int32) |
Indicates whether the navigating to a model Item based on the line number in the text image succeeds. |
NavigateTo(Int32, Int32, Int32, Int32) |
Indicates whether the navigating to a model Item based on the source location in the XAML file. |
NavigateTo(Int32)
Indicates whether the navigating to a model Item based on the line number in the text image succeeds.
public:
abstract bool NavigateTo(int location);
public abstract bool NavigateTo (int location);
abstract member NavigateTo : int -> bool
Public MustOverride Function NavigateTo (location As Integer) As Boolean
Parameters
- location
- Int32
The line number in text image.
Returns
true
if the navigating succeeds; otherwise, false
.
Applies to
NavigateTo(Int32, Int32, Int32, Int32)
Indicates whether the navigating to a model Item based on the source location in the XAML file.
public:
abstract bool NavigateTo(int startLine, int startColumn, int endLine, int endColumn);
public abstract bool NavigateTo (int startLine, int startColumn, int endLine, int endColumn);
abstract member NavigateTo : int * int * int * int -> bool
Public MustOverride Function NavigateTo (startLine As Integer, startColumn As Integer, endLine As Integer, endColumn As Integer) As Boolean
Parameters
- startLine
- Int32
The starting line.
- startColumn
- Int32
The starting column.
- endLine
- Int32
The end line.
- endColumn
- Int32
The end column.
Returns
true
if the navigating succeeds; otherwise, false
.