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

IsDropDescriptionValid() public static méthode

public static IsDropDescriptionValid ( System dataObject ) : Boolean
dataObject System
Résultat 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