 | DFDateTimeColumn(String, DateTime) Constructor |
Constructs a DFDateTimeColumn instance with the given name, a
date format as specified in StatsSettings.DateTimeFormat
and a missing value as specified in
StatsSettings.DateTimeMissingValue. Column elements
are initialized with data from the given array.
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
Syntaxpublic DFDateTimeColumn(
string name,
params DateTime[] data
)
Public Sub New (
name As String,
ParamArray data As DateTime()
)
public:
DFDateTimeColumn(
String^ name,
... array<DateTime>^ data
)
new :
name : string *
data : DateTime[] -> DFDateTimeColumn
Parameters
- name String
- The name of the column.
- data DateTime
- An array of DateTime objects.
RemarksOnce a column instance is constructed, the name cannot be
changed. For a modifiable property, see Label.
See Also