Files
Adam Hathcock 283e98faa0 Revit 2022 (#32)
* Fix building for 2023 revit fakes

* add Revit 2022

* fmt
2024-07-18 08:49:17 +01:00

36 lines
1016 B
C#

namespace Autodesk.Revit.UI;
public partial class FileDialog : System.IDisposable
{
public FileDialog() { }
public virtual Autodesk.Revit.DB.ModelPath GetSelectedModelPath() => throw new System.NotImplementedException();
public virtual Autodesk.Revit.UI.ItemSelectionDialogResult Show() => throw new System.NotImplementedException();
public static System.Boolean IsValidFilterString(System.String filterString) =>
throw new System.NotImplementedException();
public virtual void Dispose() => throw new System.NotImplementedException();
public virtual System.Boolean IsValidObject
{
get => throw new System.NotImplementedException();
}
public virtual System.String DefaultFilterEntry
{
get => throw new System.NotImplementedException();
set { }
}
public virtual System.String Title
{
get => throw new System.NotImplementedException();
set { }
}
public virtual System.String Filter
{
get => throw new System.NotImplementedException();
set { }
}
}