Answers for "xtragrid hid text"

0

xtragrid hid text

static void gridView1_CustomColumnDisplayText(object sender, CustomColumnDisplayTextEventArgs e) {  
    if (e.RowHandle != GridControl.InvalidRowHandle && e.Column.FieldName == "Price") {  
        e.DisplayText = string.Empty;  
    }  
}
Posted by: Guest on October-13-2020

Browse Popular Code Answers by Language