[]
        
(Showing Draft Content)

GrapeCity.Documents.Common.StructPredicate-1

StructPredicate<T> Delegate

Represents the method that defines a set of criteria and determines whether the specified struct meets those criteria.

Namespace: GrapeCity.Documents.Common
Assembly: DS.Documents.Imaging.dll
Syntax
public delegate bool StructPredicate<T>(in T item) where T : struct
Public Delegate Function StructPredicate(Of T As Structure)(item As T) As Boolean
Parameters
Type Name Description
T item

The struct to compare against the criteria defined within the method represented by this delegate.

Returns
Type Description
bool

true if item meets the criteria defined within the method represented by this delegate; otherwise, false.

Type Parameters
Name Description
T

The type of the struct to compare.