Skip to main content
A newer version of this page is available. .

RecipientCollection.Item[String] Property

Provides access to individual items in the collection by their address.

Namespace: DevExpress.XtraPrinting

Assembly: DevExpress.Printing.v19.1.Core.dll

Declaration

public Recipient this[string recipientAddress] { get; }

Parameters

Name Type Description
recipientAddress String

A String value specifying the address of the recipient to get.

Property Value

Type Description
Recipient

A Recipient which represents the recipient with the specified address.

Remarks

This property searches the collection for the recipient whose address matches the specified value, and returns this recipient. If no such recipient is found, the indexer returns null (Nothing in Visual Basic).

See Also