242cf50726
* first pass of making Rhino work: more structs, nested types and some generic work * ignoring more types to compile * initial rhino check in. tabs on revit * more fixes? * rerun rhino * more generic fixes * more rhino fixes * add interfaces to structs and explicit interfaces * fix indexers and add exceptions * Compiles! * add more collections and better interface implementations * add static properties on structs * add static methods to structs * Deal with out values and System.Drawing * fmt * fix up Revit to have old properties/methods * rerun revit to be updated
63 lines
2.3 KiB
C#
63 lines
2.3 KiB
C#
namespace Autodesk.Revit.DB;
|
|
|
|
public partial class ExportPatternTable
|
|
: System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<
|
|
Autodesk.Revit.DB.ExportPatternKey,
|
|
Autodesk.Revit.DB.ExportPatternInfo
|
|
>>,
|
|
System.Collections.IEnumerable,
|
|
System.IDisposable
|
|
{
|
|
public ExportPatternTable() { }
|
|
|
|
public virtual Autodesk.Revit.DB.ExportPatternTableIterator GetPatternTableIterator() =>
|
|
throw new System.NotImplementedException();
|
|
|
|
public virtual Autodesk.Revit.DB.ExportPatternInfo get_Item(Autodesk.Revit.DB.ExportPatternKey patternKey) =>
|
|
throw new System.NotImplementedException();
|
|
|
|
public virtual void set_Item(
|
|
Autodesk.Revit.DB.ExportPatternKey PatternKey,
|
|
Autodesk.Revit.DB.ExportPatternInfo PatternInfo
|
|
) => throw new System.NotImplementedException();
|
|
|
|
public virtual System.Boolean ContainsKey(Autodesk.Revit.DB.ExportPatternKey exportpatternKey) =>
|
|
throw new System.NotImplementedException();
|
|
|
|
public virtual Autodesk.Revit.DB.ExportPatternInfo GetExportPatternInfo(
|
|
Autodesk.Revit.DB.ExportPatternKey exportPatternKey
|
|
) => throw new System.NotImplementedException();
|
|
|
|
public virtual System.Collections.Generic.IList<Autodesk.Revit.DB.ExportPatternKey> GetKeys() =>
|
|
throw new System.NotImplementedException();
|
|
|
|
public virtual System.Collections.Generic.IList<Autodesk.Revit.DB.ExportPatternInfo> GetValues() =>
|
|
throw new System.NotImplementedException();
|
|
|
|
public virtual void Add(
|
|
Autodesk.Revit.DB.ExportPatternKey exportPatternKey,
|
|
Autodesk.Revit.DB.ExportPatternInfo exportPatternInfo
|
|
) => throw new System.NotImplementedException();
|
|
|
|
public virtual void Remove(Autodesk.Revit.DB.ExportPatternKey exportPatternKey) =>
|
|
throw new System.NotImplementedException();
|
|
|
|
public virtual void Clear() => throw new System.NotImplementedException();
|
|
|
|
public virtual System.Collections.Generic.IEnumerator<System.Collections.Generic.KeyValuePair<
|
|
Autodesk.Revit.DB.ExportPatternKey,
|
|
Autodesk.Revit.DB.ExportPatternInfo
|
|
>> GetEnumerator() => 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.Int32 Count
|
|
{
|
|
get => throw new System.NotImplementedException();
|
|
}
|
|
}
|