Click or drag to resize

File3dmLayerTable Class

Provides access to layers in the 3dm file.
Inheritance Hierarchy
SystemObject
  Rhino.FileIOCommonComponentTableLayer
    Rhino.FileIOFile3dmCommonComponentTableLayer
      Rhino.FileIOFile3dmLayerTable

Namespace:  Rhino.FileIO
Assembly:  RhinoCommon (in RhinoCommon.dll)
Syntax
public class File3dmLayerTable : File3dmCommonComponentTable<Layer>, 
	IList<Layer>, ICollection<Layer>, IEnumerable<Layer>, 
	IEnumerable

The File3dmLayerTable type exposes the following members.

Properties
Methods
  NameDescription
Public methodAdd
Adds an item.
(Inherited from File3dmCommonComponentTableT.)
Public methodAddDefaultLayer
Easy way to add a default layer to the model.
Public methodAddLayer(String, Color)
Easy way to add a new layer to the model.
Public methodAddLayer(String, Color, Guid)
Add a new layer to the model.
Public methodClear
Marks all items as deleted.
(Inherited from CommonComponentTableT.)
Public methodDelete(T)
Flags a component as deleted.
(Inherited from File3dmCommonComponentTableT.)
Public methodDelete(Int32)
Flags a component as deleted.
(Inherited from File3dmCommonComponentTableT.)
Public methodDump
Prepares a text dump of object table.
(Inherited from File3dmCommonComponentTableT.)
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Protected methodFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object.)
Public methodFindId
Uses the guid to find a model component. Deleted objects cannot be found by id. The guid is the value that is stored in the .Id property. In a single document, no two active objects have the same guid. If an object is replaced with a new object, then the guid persists. For example, if the _Move command moves an object, then the moved object inherits its guid from the starting object. If the Copy command copies an object, then the copy gets a new guid. This guid persists through file saving/opening operations. This function will not find grip objects.
(Inherited from CommonComponentTableT.)
Public methodFindIndex
Retrieves a Layer object based on Index. This search type of search is discouraged. We are moving towards using only IDs for all tables.
Public methodFindName
Finds a Layer given its name.
Public methodFindNameHash
Finds a Layer given its name hash.
Public methodGetEnumerator
Returns the enumerator that yields all items.
(Inherited from CommonComponentTableT.)
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
See Also