Files
speckle-sharp-host-apis/Speckle.Revit2023.Fakes/generated/Autodesk.Revit.UI.UIDocument.s.cs
T
Adam Hathcock d482bf1087 Generate fakes (#24)
* Fake starting to work

* mostly works, need structs and enums

* structs and initial Revit 2023 checkin

* fix up other projects

* Add Architecture

* add Revit UI

* add properties

* add enum names and put in previously ignored virtual methods

* more dealing with vritual/new

* account for non-virtual structs and regenerate revit

* Implement exclusions for types that are too hard

* trying to add constructors

* add static properties but can't be virtual so can't be used

* base constructors and more exclusions

* split things out

* add interfaces and did some implementations

* More fixes and more namespaces

* add non-standard props

* add point clouds and fields for structs

* add exceptions

* generate empty constructors

* fmt
2024-07-01 13:55:55 +01:00

92 lines
3.8 KiB
C#

namespace Autodesk.Revit.UI;
public partial class UIDocument : System.IDisposable
{
public UIDocument(Autodesk.Revit.DB.Document document) => throw new System.NotImplementedException();
public static Autodesk.Revit.DB.IFamilyLoadOptions GetRevitUIFamilyLoadOptions() =>
throw new System.NotImplementedException();
public virtual System.Boolean SaveAndClose() => throw new System.NotImplementedException();
public virtual void ShowElements(System.Collections.Generic.ICollection<Autodesk.Revit.DB.ElementId> elementIds) =>
throw new System.NotImplementedException();
public virtual void ShowElements(Autodesk.Revit.DB.ElementSet elements) => throw new System.NotImplementedException();
public virtual void ShowElements(Autodesk.Revit.DB.Element element) => throw new System.NotImplementedException();
public virtual void ShowElements(Autodesk.Revit.DB.ElementId elementId) => throw new System.NotImplementedException();
public virtual void RefreshActiveView() => throw new System.NotImplementedException();
public virtual void RequestViewChange(Autodesk.Revit.DB.View view) => throw new System.NotImplementedException();
public virtual void PromptForFamilyInstancePlacement(
Autodesk.Revit.DB.FamilySymbol familySymbol,
Autodesk.Revit.UI.PromptForFamilyInstancePlacementOptions options
) => throw new System.NotImplementedException();
public virtual void PromptForFamilyInstancePlacement(Autodesk.Revit.DB.FamilySymbol familySymbol) =>
throw new System.NotImplementedException();
public virtual System.Collections.Generic.IList<Autodesk.Revit.UI.UIView> GetOpenUIViews() =>
throw new System.NotImplementedException();
public virtual System.Collections.Generic.IList<Autodesk.Revit.UI.SketchGalleryOptions> GetSketchGalleryOptions(
Autodesk.Revit.DB.FamilySymbol familySymbol
) => throw new System.NotImplementedException();
public virtual void PromptToPlaceViewOnSheet(
Autodesk.Revit.DB.View view,
System.Boolean allowReplaceExistingSheetViewport
) => throw new System.NotImplementedException();
public virtual void PostRequestForElementTypePlacement(Autodesk.Revit.DB.ElementType elementType) =>
throw new System.NotImplementedException();
public virtual void PromptToPlaceElementTypeOnLegendView(Autodesk.Revit.DB.ElementType elementType) =>
throw new System.NotImplementedException();
public virtual void PromptToMatchElementType(Autodesk.Revit.DB.ElementType elementType) =>
throw new System.NotImplementedException();
public virtual System.Boolean CanPlaceElementType(Autodesk.Revit.DB.ElementType elementType) =>
throw new System.NotImplementedException();
public virtual void SaveAs(Autodesk.Revit.UI.UISaveAsOptions options) => throw new System.NotImplementedException();
public virtual void SaveAs() => throw new System.NotImplementedException();
public virtual System.Collections.Generic.IList<Autodesk.Revit.UI.FaceBasedPlacementType> GetPlacementTypes(
Autodesk.Revit.DB.FamilySymbol familySymbol,
Autodesk.Revit.DB.View pDBView
) => throw new System.NotImplementedException();
public virtual void UpdateAllOpenViews() => throw new System.NotImplementedException();
public virtual void Dispose() => throw new System.NotImplementedException();
public virtual System.Boolean IsValidObject
{
get => throw new System.NotImplementedException();
}
public virtual Autodesk.Revit.DB.View ActiveGraphicalView
{
get => throw new System.NotImplementedException();
}
public virtual Autodesk.Revit.UI.UIApplication Application
{
get => throw new System.NotImplementedException();
}
public virtual Autodesk.Revit.DB.Document Document
{
get => throw new System.NotImplementedException();
}
public virtual Autodesk.Revit.DB.View ActiveView
{
get => throw new System.NotImplementedException();
set { }
}
}