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

IsShowingLayered() public static method

public static IsShowingLayered ( System.Windows.Forms dataObject ) : Boolean
dataObject System.Windows.Forms
return Boolean
    public static Boolean IsShowingLayered(F.DataObject dataObject) {
      if (dataObject.GetDataPresent("IsShowingLayered")) {
        Object data = dataObject.GetData("IsShowingLayered");
        if (data != null)
          return data is Stream ? new BinaryReader(data as Stream).ReadBoolean() : false;
      }

      return false;
    }
ShellView