corelibraries-devexpress-dot-data-dot-iparameter.md
Specifies the parameter value.
Namespace : DevExpress.Data
Assembly : DevExpress.Data.v25.2.dll
NuGet Package : DevExpress.Data
object Value { get; set; }
Property Value As Object
| Type | Description |
|---|---|
| Object |
A Object, specifying the parameter value.
|
The following code snippets (auto-collected from DevExpress Examples) contain references to the Value property.
Note
The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.
// Actual value used when retrieving data from the data source.
customParameter.Value = "Nevada";
}
// Actual value used when retrieving data from the data source.
customParameter.Value = "Nevada";
}
if (custIDParameter != null) {
custIDParameter.Value = "AROUT";
}
if (countryParam != null) {
countryParam.Value = "Brazil";
}
if (countryParam != null) {
countryParam.Value = "Brazil";
}
' Actual value used when retrieving data from the data source.
customParameter.Value = "Nevada"
End If
' Actual value used when retrieving data from the data source.
customParameter.Value = "Nevada"
End If
If custIDParameter IsNot Nothing Then
custIDParameter.Value = "AROUT"
End If
If countryParam IsNot Nothing Then
countryParam.Value = "Brazil"
End If
If customerIDsparam IsNot Nothing Then
customerIDsparam.Value = New String() {"10251", "10252", "10253", "10254"}
End If
See Also