BExplorer.Shell.ShellView.RaiseItemUpdated C# (CSharp) Méthode

RaiseItemUpdated() public méthode

public RaiseItemUpdated ( ItemUpdateType type, IListItemEx old, IListItemEx newItem, Int32 index ) : void
type ItemUpdateType
old IListItemEx
newItem IListItemEx
index Int32
Résultat void
    public void RaiseItemUpdated(ItemUpdateType type, IListItemEx old, IListItemEx newItem, Int32 index) {
      this.ItemUpdated?.Invoke(this, new ItemUpdatedEventArgs(type, newItem, old, index));
    }
ShellView