BExplorer.Shell.ShellView.IsDropDescriptionValid C# (CSharp) Method

IsDropDescriptionValid() public static method

public static IsDropDescriptionValid ( System dataObject ) : Boolean
dataObject System
return Boolean
    public static Boolean IsDropDescriptionValid(System.Runtime.InteropServices.ComTypes.IDataObject dataObject) {
      Object data = dataObject.GetDropDescription();
	  return data is DataObject.DropDescription ?
				(DataObject.DropImageType)((DataObject.DropDescription)data).type != DataObject.DropImageType.Invalid :
				false;
    }
ShellView