Holiday ManagerDefaults Property
This property is used to get or set the default holidays used to populate the list box when the
Default button is clicked.
Definition
Namespace: EWSoftware.PDI.Windows.Forms
Assembly: EWSoftware.PDI.Windows.Forms (in EWSoftware.PDI.Windows.Forms.dll) Version: 2025.1.9.0
Assembly: EWSoftware.PDI.Windows.Forms (in EWSoftware.PDI.Windows.Forms.dll) Version: 2025.1.9.0
C#
public IEnumerable<Holiday> Defaults { get; set; }VB
Public Property Defaults As IEnumerable(Of Holiday)
Get
SetC++
public:
property IEnumerable<Holiday^>^ Defaults {
IEnumerable<Holiday^>^ get ();
void set (IEnumerable<Holiday^>^ value);
}F#
member Defaults : IEnumerable<Holiday> with get, set