BExplorer.Shell.ShellView.GetFirstSelectedItemIndex C# (CSharp) 메소드

GetFirstSelectedItemIndex() 공개 메소드

Returns the first selected item's index OR -1 if there is no selected item
public GetFirstSelectedItemIndex ( ) : Int32
리턴 Int32
    public Int32 GetFirstSelectedItemIndex() {
      var lvi = this.ToLvItemIndex(-1);
      User32.SendMessage(this.LVHandle, LVM.GETNEXTITEMINDEX, ref lvi, LVNI.LVNI_SELECTED);
      return lvi.iItem;
    }
ShellView