1b31dc18e8
* fixes * Generate empty constructors for testing
41 lines
1.5 KiB
C#
41 lines
1.5 KiB
C#
namespace Autodesk.Revit.DB;
|
|
|
|
public partial class ColorWithTransparency : System.IDisposable
|
|
{
|
|
public ColorWithTransparency() { }
|
|
|
|
public ColorWithTransparency(
|
|
System.UInt32 red,
|
|
System.UInt32 green,
|
|
System.UInt32 blue,
|
|
System.UInt32 transparency
|
|
) => throw new System.NotImplementedException();
|
|
|
|
public virtual Autodesk.Revit.DB.Color GetColor() => throw new System.NotImplementedException();
|
|
|
|
public virtual void SetColor(Autodesk.Revit.DB.Color color) => throw new System.NotImplementedException();
|
|
|
|
public virtual System.UInt32 GetRed() => throw new System.NotImplementedException();
|
|
|
|
public virtual void SetRed(System.UInt32 red) => throw new System.NotImplementedException();
|
|
|
|
public virtual System.UInt32 GetGreen() => throw new System.NotImplementedException();
|
|
|
|
public virtual void SetGreen(System.UInt32 green) => throw new System.NotImplementedException();
|
|
|
|
public virtual System.UInt32 GetBlue() => throw new System.NotImplementedException();
|
|
|
|
public virtual void SetBlue(System.UInt32 blue) => throw new System.NotImplementedException();
|
|
|
|
public virtual System.UInt32 GetTransparency() => throw new System.NotImplementedException();
|
|
|
|
public virtual void SetTransparency(System.UInt32 transparency) => throw new System.NotImplementedException();
|
|
|
|
public virtual void Dispose() => throw new System.NotImplementedException();
|
|
|
|
public virtual System.Boolean IsValidObject
|
|
{
|
|
get => throw new System.NotImplementedException();
|
|
}
|
|
}
|