BlueSky.Model.VirtualListDynamic.SetCellValue C# (CSharp) Метод

SetCellValue() приватный Метод

private SetCellValue ( object row, int colIndex, object val ) : void
row object
colIndex int
val object
Результат void
        internal void SetCellValue(object row, int colIndex, object val)
        {

            if (!UseDataStore) return;
            int fIndex = (int)row;
            Values[GetRowKey(fIndex, colIndex)] = val;
            RaiseListChanged(new ListChangedEventArgs(ListChangedType.ItemChanged, fIndex, fIndex));
        }

Usage Example

 public override void SetValue(object component, object val)
 {
     fList.SetCellValue(component, fIndex, val);
 }