DataPA Enterprise Dashboard Controls API Reference
Creates and returns a new DashboardFilterCondition.
Namespace: DataPAEnterpriseDashboardAssembly: DataPAEnterpriseDashboard (in DataPAEnterpriseDashboard.dll) Version: 1.0.90.0 (1.0.90.0)
Syntax
C# |
---|
public DashboardFilterCondition(
string LogicalOperator,
string ColumnName = "",
string ConditionOperator = "=",
string Value = "",
byte PrefixBrackets = 0,
byte SuffixBrackets = 0,
Type DataType = null
) |
Visual Basic |
---|
Public Sub New (
LogicalOperator As String,
Optional ColumnName As String = "",
Optional ConditionOperator As String = "=",
Optional Value As String = "",
Optional PrefixBrackets As Byte = 0,
Optional SuffixBrackets As Byte = 0,
Optional DataType As Type = Nothing
) |
Visual C++ |
---|
public:
DashboardFilterCondition(
String^ LogicalOperator,
String^ ColumnName = L"",
String^ ConditionOperator = L"=",
String^ Value = L"",
unsigned char PrefixBrackets = 0,
unsigned char SuffixBrackets = 0,
Type^ DataType = nullptr
) |
Parameters
- LogicalOperator
- Type: System..::..String
The logical operator (AND/OR) used by this condition.
- ColumnName (Optional)
- Type: System..::..String
The name of the column this filter will be applied to.
- ConditionOperator (Optional)
- Type: System..::..String
The operator used by this condition.
- Value (Optional)
- Type: System..::..String
The value that will be compared to the dataset column value.
- PrefixBrackets (Optional)
- Type: System..::..Byte
The number of opening brakets that preceed this condition.
- SuffixBrackets (Optional)
- Type: System..::..Byte
The number of closing brakets that follow this condition.
- DataType (Optional)
- Type: System..::..Type
Remarks
See Also