15 {
16 get
17 {
18 if (
base.RowPredicate ==
null)
19 {
20 return base.RowFilter;
21 }
22 return null;
23 }
25 set
26 {
28 {
29 base.RowPredicate = null;
30 base.RowFilter = string.Empty;
31 }
32 else
33 {
34 base.RowFilter =
value;
35 base.RowPredicate = null;
36 }
37 }
38 }