internal override bool SafeForExport()
 {
     return((ItemSelectionCondition == null || ItemSelectionCondition.SafeForExport()) &&
            (Expression == null || Expression.SafeForExport()) &&
            (CustomControl == null || CustomControl.SafeForExport()));
 }
示例#2
0
 internal bool SafeForExport()
 {
     return(DisplayEntry.SafeForExport() &&
            (ItemSelectionCondition == null || ItemSelectionCondition.SafeForExport()));
 }