Table of Contents

Interface IErrorListItem

Namespace
Loehnert.Lisrt.Scripting.ErrorList
Assembly
Loehnert.Lisrt.Scripting.dll

Interface for a IErrorList item.

public interface IErrorListItem

Properties

Column

Gets the column in the file where the error occurred.

int? Column { get; }

Property Value

int?

Description

Gets the description (the shown message) of the list item.

string Description { get; }

Property Value

string

File

Gets the name of the file where the error occurred.

string File { get; }

Property Value

string

ItemType

ErrorListItemType ItemType { get; }

Property Value

ErrorListItemType

Line

Gets the line in the file where the error occurred.

int? Line { get; }

Property Value

int?

OnClick

Gets the action on a click on the item in the list.

Action OnClick { get; }

Property Value

Action

Path

Gets the path of the file where the error occurred.

string Path { get; }

Property Value

string