C# Class System.Activities.Presentation.Services.ModelSearchService

The ModelSearchService class is responsible for generate a TextImage and navigate to the corresponding ModelItem in the workflow designer.
Exibir arquivo Open project: mahasak/dotnet452 Class Usage Examples

Public Methods

Method Description
GenerateTextImage ( ) : TextImage

Generate a searchable text image based on the model item tree.

NavigateTo ( int location ) : bool

Navigate to a modelItem based on the line number in the text image.

NavigateTo ( int startLine, int startColumn, int endLine, int endColumn ) : bool

Navigate to a modelItem based on the source location in the xaml file.

Protected Methods

Method Description
ModelSearchService ( ) : System.Activities.Presentation.Model

Constructs a new ModelSearchService.

Method Details

GenerateTextImage() public abstract method

Generate a searchable text image based on the model item tree.
public abstract GenerateTextImage ( ) : TextImage
return TextImage

ModelSearchService() protected method

Constructs a new ModelSearchService.
protected ModelSearchService ( ) : System.Activities.Presentation.Model
return System.Activities.Presentation.Model

NavigateTo() public abstract method

Navigate to a modelItem based on the line number in the text image.
public abstract NavigateTo ( int location ) : bool
location int the line number in text image.
return bool

NavigateTo() public abstract method

Navigate to a modelItem based on the source location in the xaml file.
public abstract NavigateTo ( int startLine, int startColumn, int endLine, int endColumn ) : bool
startLine int
startColumn int
endLine int
endColumn int
return bool