Class EntityFactoryIfc2x3
Inheritance
System.Object
EntityFactoryIfc2x3
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Assembly: Xbim.Ifc2x3.dll
Syntax
public sealed class EntityFactoryIfc2x3 : IEntityFactory
Properties
|
Improve this Doc
View Source
SchemasIds
Declaration
public IEnumerable<string> SchemasIds { get; }
Property Value
| Type |
Description |
| System.Collections.Generic.IEnumerable<System.String> |
|
|
Improve this Doc
View Source
SchemaVersion
Gets the Ifc Schema version of the model if this is IFC schema
Declaration
public XbimSchemaVersion SchemaVersion { get; }
Property Value
Methods
|
Improve this Doc
View Source
New(String)
Declaration
public IExpressValueType New(string typeName)
Parameters
| Type |
Name |
Description |
| System.String |
typeName |
|
Returns
|
Improve this Doc
View Source
New(IModel, Int32, Int32, Boolean)
Declaration
public IInstantiableEntity New(IModel model, int typeId, int entityLabel, bool activated)
Parameters
| Type |
Name |
Description |
| IModel |
model |
|
| System.Int32 |
typeId |
|
| System.Int32 |
entityLabel |
|
| System.Boolean |
activated |
|
Returns
|
Improve this Doc
View Source
New(IModel, String, Int32, Boolean)
Declaration
public IInstantiableEntity New(IModel model, string typeName, int entityLabel, bool activated)
Parameters
| Type |
Name |
Description |
| IModel |
model |
|
| System.String |
typeName |
|
| System.Int32 |
entityLabel |
|
| System.Boolean |
activated |
|
Returns
|
Improve this Doc
View Source
New(IModel, Type, Int32, Boolean)
Declaration
public IInstantiableEntity New(IModel model, Type t, int entityLabel, bool activated)
Parameters
| Type |
Name |
Description |
| IModel |
model |
|
| System.Type |
t |
|
| System.Int32 |
entityLabel |
|
| System.Boolean |
activated |
|
Returns
|
Improve this Doc
View Source
New<T>(IModel, Action<T>, Int32, Boolean)
Declaration
public T New<T>(IModel model, Action<T> init, int entityLabel, bool activated)
where T : IInstantiableEntity
Parameters
| Type |
Name |
Description |
| IModel |
model |
|
| System.Action<T> |
init |
|
| System.Int32 |
entityLabel |
|
| System.Boolean |
activated |
|
Returns
Type Parameters
|
Improve this Doc
View Source
New<T>(IModel, Int32, Boolean)
Declaration
public T New<T>(IModel model, int entityLabel, bool activated)
where T : IInstantiableEntity
Parameters
| Type |
Name |
Description |
| IModel |
model |
|
| System.Int32 |
entityLabel |
|
| System.Boolean |
activated |
|
Returns
Type Parameters
Implements