Table of Contents

Interface IIntelliSenseContext

Namespace
Loehnert.Lisrt.Scripting.Editor.File.IntelliSense
Assembly
Loehnert.Lisrt.Scripting.dll

Represents a interface for IntelliSense context.

public interface IIntelliSenseContext

Properties

Code

Gets the code.

string Code { get; }

Property Value

string

Position

Gets the position.

TextPosition Position { get; }

Property Value

TextPosition

ProjectItem

Gets the project item.

IProjectItem ProjectItem { get; }

Property Value

IProjectItem

Variables

Gets the additional variables.

IEnumerable<KeyValuePair<string, object>> Variables { get; }

Property Value

IEnumerable<KeyValuePair<string, object>>