ParameterStateEnum Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Enumerates the state of a parameter.
public enum class ParameterStateEnum
public enum ParameterStateEnum
type ParameterStateEnum =
Public Enum ParameterStateEnum
- Inheritance
-
ParameterStateEnum
Fields
Name | Value | Description |
---|---|---|
HasValidValue | 0 | A valid value for the parameter exists. |
MissingValidValue | 1 | A valid value for the parameter does not exist. |
HasOutstandingDependencies | 2 | The parameter has outstanding dependencies. This generally occurs when the valid values or the default value of a parameter is query-based and dependencies exist that have not been submitted to the GetReportParameters(String, String, Boolean, ParameterValue[], DataSourceCredentials[]) method. |
DynamicValuesUnavailable | 3 | The parameter values are unavailable. This state indicates that no valid, query-based values were returned as a result of the query. |
Remarks
Use the ParameterStateEnum enumeration with the State property of the ReportParameter class.