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.