Files
speckle-sharp-host-apis/Speckle.Rhino7.Fakes/generated/Rhino.FileIO.FileWriteOptions.s.cs
T
Adam Hathcock fb415d0416
.NET Build and Publish / build (push) Has been cancelled
Fix rhino7 fileio (#34)
* fix issue with basetype being null

* add Rhino.FileIO properly

* update csharpier
2024-10-10 10:13:02 +01:00

82 lines
2.0 KiB
C#

namespace Rhino.FileIO;
public partial class FileWriteOptions : System.IDisposable
{
public FileWriteOptions() { }
public virtual void Dispose() => throw new System.NotImplementedException();
public virtual System.Boolean UpdateDocumentPath
{
get => throw new System.NotImplementedException();
set { }
}
public virtual System.Boolean WriteSelectedObjectsOnly
{
get => throw new System.NotImplementedException();
set { }
}
public virtual System.Boolean IncludeRenderMeshes
{
get => throw new System.NotImplementedException();
set { }
}
public virtual System.Boolean IncludePreviewImage
{
get => throw new System.NotImplementedException();
set { }
}
public virtual System.Boolean IncludeBitmapTable
{
get => throw new System.NotImplementedException();
set { }
}
public virtual System.Boolean IncludeHistory
{
get => throw new System.NotImplementedException();
set { }
}
public virtual System.Boolean WriteAsTemplate
{
get => throw new System.NotImplementedException();
}
public virtual System.Boolean SuppressDialogBoxes
{
get => throw new System.NotImplementedException();
set { }
}
public virtual System.Boolean SuppressAllInput
{
get => throw new System.NotImplementedException();
set { }
}
public virtual System.Boolean WriteGeometryOnly
{
get => throw new System.NotImplementedException();
set { }
}
public virtual System.Boolean WriteUserData
{
get => throw new System.NotImplementedException();
set { }
}
public virtual System.Int32 FileVersion
{
get => throw new System.NotImplementedException();
set { }
}
public virtual Rhino.Geometry.Transform Xform
{
get => throw new System.NotImplementedException();
set { }
}
public virtual System.String DestinationFileName
{
get => throw new System.NotImplementedException();
}
public virtual Rhino.RhinoDoc RhinoDoc
{
get => throw new System.NotImplementedException();
}
}