VEvent CollectionItem(String) Property
Collection indexer
Definition
Namespace: EWSoftware.PDI.Objects
Assembly: EWSoftware.PDI.Data (in EWSoftware.PDI.Data.dll) Version: 2025.1.9.0
Assembly: EWSoftware.PDI.Data (in EWSoftware.PDI.Data.dll) Version: 2025.1.9.0
C#
public VEvent? this[
string uniqueId
] { get; set; }VB
Public Default Property Item (
uniqueId As String
) As VEvent
Get
SetC++
public:
property VEvent^ default[String^ uniqueId] {
VEvent^ get (String^ uniqueId);
void set (String^ uniqueId, VEvent^ value);
}F#
member Item : VEvent with get, setParameters
- uniqueId String
- The unique ID of the item to get or set. When retrieving an item, null is returned if it does not exist in the collection.
Property Value
VEventExceptions
| ArgumentException | This is thrown if an attempt is made to set an item using a unique ID that does not exist in the collection. |