'Declaration Public ReadOnly Property Values As ICollection
'Usage Dim instance As TdQueryBand Dim value As ICollection value = instance.Values
public ICollection Values {get;}
public: property ICollection^ Values { ICollection^ get(); }
'Declaration Public ReadOnly Property Values As ICollection
'Usage Dim instance As TdQueryBand Dim value As ICollection value = instance.Values
public ICollection Values {get;}
public: property ICollection^ Values { ICollection^ get(); }
The following is an example on how to retrieve the values using this property. The output of this example is as follows:
Value = cust1
Value = clothing
Value = store2
Value = 2008-10-20T12:08:10.000000Z
public void ValueExample() { TdQueryBand queryBand = new TdQueryBand(); queryBand.QueryBandStmt = "Custom1 = cust1; Group = clothing; Source = store2"; // The UTC offset has been accounted for in the time queryBand.Deadline = new DateTimeOffset.Parse("2008-10-20 12:08:10"); foreach (Object tempObject in queryBand.Values) { Console.WriteLine("Value = {0}", Convert.ToString(tempObject)); } }
Product | Versions | Platforms |
---|---|---|
.NET | 2.1, 3.1, 6 | Windows, Linux, MacOS |
.NET Framework | 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8 | Windows |
.NET Standard | 2.0 | Windows, Linux, MacOS |