Back to Devexpress

IParameter.Value Property

corelibraries-devexpress-dot-data-dot-iparameter.md

latest5.7 KB
Original Source

IParameter.Value Property

Specifies the parameter value.

Namespace : DevExpress.Data

Assembly : DevExpress.Data.v25.2.dll

NuGet Package : DevExpress.Data

Declaration

csharp
object Value { get; set; }
vb
Property Value As Object

Property Value

TypeDescription
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.

wpf-dashboard-how-to-manage-dashboard-parameters-in-code/CS/WPF_Dashboard_CustomParameters/Views/MyDashboardView.xaml.cs#L22

csharp
// Actual value used when retrieving data from the data source.
    customParameter.Value = "Nevada";
}

winforms-dashboard-how-to-manage-dashboard-parameters-in-code/CS/CustomParametersExample/ViewerForm1.cs#L36

csharp
// Actual value used when retrieving data from the data source.
    customParameter.Value = "Nevada";
}

winforms-dashboard-pass-hidden-dashboard-parameters-to-custom-sql-query/CS/Dashboard_CustomParameters_Win/Form1.cs#L14

csharp
if (custIDParameter != null) {
    custIDParameter.Value = "AROUT";
}

web-forms-dashboard-pass-hidden-parameters-to-custom-sql-query/CS/ASPxDashboard_CustomParameters/WebForm1.aspx.cs#L18

csharp
if (countryParam != null) {
    countryParam.Value = "Brazil";
}

asp-net-core-dashboard-pass-hidden-parameters-to-custom-sql-query/CS/AspNetCoreDashboard_CustomParameters/Code/DashboardUtils.cs#L29

csharp
if (countryParam != null) {
    countryParam.Value = "Brazil";
}

wpf-dashboard-how-to-manage-dashboard-parameters-in-code/VB/WPF_Dashboard_CustomParameters/Views/MyDashboardView.xaml.vb#L19

vb
' Actual value used when retrieving data from the data source.
    customParameter.Value = "Nevada"
End If

winforms-dashboard-how-to-manage-dashboard-parameters-in-code/VB/CustomParametersExample/ViewerForm1.vb#L38

vb
' Actual value used when retrieving data from the data source.
    customParameter.Value = "Nevada"
End If

winforms-dashboard-pass-hidden-dashboard-parameters-to-custom-sql-query/VB/Dashboard_CustomParameters_Win/Form1.vb#L16

vb
If custIDParameter IsNot Nothing Then
    custIDParameter.Value = "AROUT"
End If

web-forms-dashboard-pass-hidden-parameters-to-custom-sql-query/VB/ASPxDashboard_CustomParameters/WebForm1.aspx.vb#L21

vb
If countryParam IsNot Nothing Then
    countryParam.Value = "Brazil"
End If

winforms-dashboard-pass-dashboard-parameters-to-stored-procedure/VB/DashboardParameters/DesignerForm1.vb#L18

vb
If customerIDsparam IsNot Nothing Then
    customerIDsparam.Value = New String() {"10251", "10252", "10253", "10254"}
End If

See Also

IParameter Interface

IParameter Members

DevExpress.Data Namespace