AD
Administrator
Syncfusion Team
April 1, 2005 11:46 PM UTC
There is no special operator for doing a NOT LIKE, but you can check if a logical expression equals 0 to get the complement of the logical expression.
GridConditionalFormatDescriptor cfd = new GridConditionalFormatDescriptor("NotEmpty");
cfd.Expression = "( [Col2] LIKE '''' ) = 0" ;
cfd.Appearance.AnyRecordFieldCell.BackColor = Color.LightGoldenrodYellow;
this.gridGroupingControl1.TableDescriptor.ConditionalFormats.Add(cfd);