Свойство SearchCondition.Values
Gets or sets values the values to search for in the searchable property.
Пространство имен: ReportService2010
Сборка: ReportService2010 (в ReportService2010.dll)
Синтаксис
'Декларация
Public Property Values As String()
Get
Set
'Применение
Dim instance As SearchCondition
Dim value As String()
value = instance.Values
instance.Values = value
public string[] Values { get; set; }
public:
property array<String^>^ Values {
array<String^>^ get ();
void set (array<String^>^ value);
}
member Values : string[] with get, set
function get Values () : String[]
function set Values (value : String[])
Значение свойства
Тип: array<System.String[]
A string array that represent the values to search for in the searchable property.
Замечания
The size of the array the string format depend on the value of Condition:
If Condition is set to Equals or Contains, the array must contain a single string.
If Condition is set to Between, the array must contain two strings in date and time format.
If Condition is set to In, the array can contain one or more strings.