Skip to content

CellPatternSearchResult

Namespace: Hex1b.Automation

Assembly: Hex1b.dll

Collection of all pattern matches found in a search.

csharp
public sealed class CellPatternSearchResult

Inheritance

ObjectCellPatternSearchResult

Properties

Count

Number of matches found.

Returns: Int32

csharp
public int Count { get; }

First

First match, or null if none.

Returns: CellPatternMatch

csharp
public CellPatternMatch? First { get; }

HasMatches

Whether any matches were found.

Returns: Boolean

csharp
public bool HasMatches { get; }

Matches

All matches found.

Returns: IReadOnlyList<CellPatternMatch>

csharp
public IReadOnlyList<CellPatternMatch> Matches { get; }

Released under the MIT License.