InterfaceICodeEditor
Interface
Interface to interact with the Actipro Syntax Editor.
Definition
Namespace:ArtOfTest.WebAii.Design.CodeGeneration
Assembly:ArtOfTest.WebAii.Design.dll
Syntax:
cs-api-definition
public interface ICodeEditor : IUIPanelView
Inherited Members
Properties
Methods
AttachHandler(TestCodeEvent, RoutedEventHandler)
Attach event handlers.
Declaration
cs-api-definition
void AttachHandler(TestCodeEvent type, RoutedEventHandler routedEventHandler)
Parameters
type
Event type.
routedEventHandler
Event handler.
DetachHandler(TestCodeEvent, RoutedEventHandler)
Detach event handlers.
Declaration
cs-api-definition
void DetachHandler(TestCodeEvent type, RoutedEventHandler routedEventHandler)
Parameters
type
Event type.
routedEventHandler
Event handler.
DisplayCompilationErrors(ParsedCodeStepsCollection, string, string, bool)
Update the UI with compilation errors.
Declaration
cs-api-definition
void DisplayCompilationErrors(ParsedCodeStepsCollection steps, string errorFiles, string allErrors, bool nonStepError)
Parameters
steps
The steps collection.
errorFiles
The files containing errors in a comma-separated list.
allErrors
All errors.
nonStepError
Whether contains errors not related to a particular step.
GoToCaretOffset(int)
Scroll to a given caret offset.
Declaration
cs-api-definition
void GoToCaretOffset(int caretOffset)
Parameters
caretOffset
The caret offset to scroll to.
GoToLineAndColumn(int, int)
Scroll to a given line and column.