C# Класс System.Activities.Presentation.Services.ModelSearchService

The ModelSearchService class is responsible for generate a TextImage and navigate to the corresponding ModelItem in the workflow designer.
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
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.

Защищенные методы

Метод Описание
ModelSearchService ( ) : System.Activities.Presentation.Model

Constructs a new ModelSearchService.

Описание методов

GenerateTextImage() публичный абстрактный Метод

Generate a searchable text image based on the model item tree.
public abstract GenerateTextImage ( ) : TextImage
Результат TextImage

ModelSearchService() защищенный Метод

Constructs a new ModelSearchService.
protected ModelSearchService ( ) : System.Activities.Presentation.Model
Результат System.Activities.Presentation.Model

NavigateTo() публичный абстрактный Метод

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.
Результат bool

NavigateTo() публичный абстрактный Метод

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
Результат bool