'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)); } }
Target Platforms: Windows 8.1, Windows 10, Windows Server 2012 R2, Windows Server 2016, Windows Server 2019