| DashboardFilterCondition Constructor (String, String, String, String, Byte, Byte, Type) | 
            
               
             | 
          
        
        DataPA OpenAnalytics API Reference
        
 Creates and returns a new DashboardFilterCondition.
 
         
        Namespace: DataPAEnterpriseDashboardAssembly: DataPAEnterpriseDashboard (in DataPAEnterpriseDashboard.dll) Version: 1.0.90.0 (1.0.90.0)
Syntaxpublic DashboardFilterCondition(
	string LogicalOperator,
	string ColumnName = "",
	string ConditionOperator = "=",
	string Value = "",
	byte PrefixBrackets = 0,
	byte SuffixBrackets = 0,
	Type DataType = null
)
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
)
public:
DashboardFilterCondition(
	String^ LogicalOperator, 
	String^ ColumnName = L"", 
	String^ ConditionOperator = L"=", 
	String^ Value = L"", 
	unsigned char PrefixBrackets = 0, 
	unsigned char SuffixBrackets = 0, 
	Type^ DataType = nullptr
)
DataPAEnterpriseDashboard.DashboardFilterCondition = function(LogicalOperator, ColumnName, ConditionOperator, Value, PrefixBrackets, SuffixBrackets, DataType);
Parameters
- LogicalOperator
 - Type: SystemString
The logical operator (AND/OR) used by this condition. - ColumnName (Optional)
 - Type: SystemString
The name of the column this filter will be applied to. - ConditionOperator (Optional)
 - Type: SystemString
The operator used by this condition. - Value (Optional)
 - Type: SystemString
The value that will be compared to the dataset column value. - PrefixBrackets (Optional)
 - Type: SystemByte
The number of opening brakets that preceed this condition. - SuffixBrackets (Optional)
 - Type: SystemByte
The number of closing brakets that follow this condition. - DataType (Optional)
 - Type: SystemType
 
Remarks
See Also