Exemplo n.º 1
0
 /// <summary>Initializes a new instance of the <see cref="OBJECT_TYPE_LIST"/> struct.</summary>
 /// <param name="level">The level of the object type in the hierarchy of an object and its subobjects.</param>
 /// <param name="objType">The object or subobject identifier.</param>
 public OBJECT_TYPE_LIST(ObjectTypeListLevel level, Guid objType)
 {
     this.level     = 0;
     Sbz            = 0;
     guidObjectType = EmptyGuidPtr;
     this.level     = level;
     ObjectId       = objType;
 }
Exemplo n.º 2
0
 /// <summary>Initializes a new instance of the <see cref="OBJECT_TYPE_LIST"/> struct.</summary>
 /// <param name="level">The level of the object type in the hierarchy of an object and its subobjects.</param>
 /// <param name="objType">The object or subobject identifier.</param>
 public OBJECT_TYPE_LIST(ObjectTypeListLevel level, Guid objType = default)
 {
     Sbz            = 0;
     this.level     = level;
     guidObjectType = objType == default ? null : &objType;
 }
Exemplo n.º 3
0
 /// <summary>Initializes a new instance of the <see cref="OBJECT_TYPE_LIST"/> struct.</summary>
 /// <param name="level">The level of the object type in the hierarchy of an object and its subobjects.</param>
 /// <param name="objType">The object or subobject identifier.</param>
 public OBJECT_TYPE_LIST(ObjectTypeListLevel level, in Guid objType = default)
Exemplo n.º 4
0
 /// <summary>Initializes a new instance of the <see cref="OBJECT_TYPE_LIST"/> struct.</summary>
 /// <param name="level">The level of the object type in the hierarchy of an object and its subobjects.</param>
 /// <param name="objType">The object or subobject identifier.</param>
 public OBJECT_TYPE_LIST(ObjectTypeListLevel level, Guid objType)
 {
     Sbz        = 0;
     this.level = level;
     ObjectId   = objType;
 }