Table of Contents

Class NcNoteCache

Namespace
Hi.Numerical
Assembly
HiUniNc.dll

Cache for notes and warnings generated during NC line parsing.

public class NcNoteCache
Inheritance
NcNoteCache
Inherited Members
Extension Methods

Properties

IndexNote

Gets or sets the index note (N number) from the NC line.

public int? IndexNote { get; set; }

Property Value

int?

SkippedFlags

Known flags and sure to skip.

public List<string> SkippedFlags { get; set; }

Property Value

List<string>

Text

Gets a text representation of all non-empty flag lists.

public string Text { get; }

Property Value

string

UnExpectedFlags

known flags but not shown on an expected way.

public List<string> UnExpectedFlags { get; set; }

Property Value

List<string>

UnSupportedFlags

Known flags but not support.

public List<string> UnSupportedFlags { get; set; }

Property Value

List<string>

UnknownFlags

Unknown flags.

public List<string> UnknownFlags { get; set; }

Property Value

List<string>

Warnings

Gets or sets the list of warnings generated during parsing.

public List<string> Warnings { get; set; }

Property Value

List<string>