Files
speckle-sharp-host-apis/Speckle.Revit2023.Fakes/generated/Autodesk.Revit.UI.FileDialog.s.cs
T
Adam Hathcock 1b31dc18e8 Generate empty constructors for testing (#27)
* fixes

* Generate empty constructors for testing
2024-07-01 14:58:01 +00: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 { }
}
}