Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
1255
"EditorControl" Property
posted

Hi, we have the code below which uses  "EditorControl" Property,  but it's marked  "EditorControl" property is deprecated,  so which property  should we use  to replace it  ?

   foreach (var thisColumn in selectedRow.Band.Columns)
   {
    if (thisColumn.EditorControl != null && thisColumn.EditorControl is UltraCombo_Custodian)
    {
     ((UltraCombo_Custodian)thisColumn.EditorControl).Last_Saved_Value = selectedRow.GetCellValue(thisColumn.Key);
    }
   }