 | PdfFontCollectionFind Method |
Searches for an element that matches the conditions defined by the specified predicate, and returns the first occurrence within the entire System.Collections.Generic.List`1.
Namespace: Patagames.Pdf.NetAssembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 5.1.3
Syntaxpublic PdfFont Find(
Predicate<PdfFont> match
)
Public Function Find (
match As Predicate(Of PdfFont)
) As PdfFont
public:
virtual PdfFont^ Find(
Predicate<PdfFont^>^ match
) sealed
abstract Find :
match : Predicate<PdfFont> -> PdfFont
override Find :
match : Predicate<PdfFont> -> PdfFont public final PdfFont Find(
Predicate<PdfFont> match
)
Parameters
- match PredicatePdfFont
- The System.Predicate`1 delegate that defines the conditions of the element to search for.
Return Value
PdfFontThe first element that matches the conditions defined by the specified predicate, if found; otherwise, null.
Implements
IReadOnlyListTFind(PredicateT)
Exceptions
See Also