Click or drag to resize

IElementSetDefinition Interface

Defines a set of elements that share some common properties: - All elements must be of same ElementGeometry - All vertices of the elements must be of same CoordinateType

Namespace:  DHI.Mike1D.Generic
Assembly:  DHI.Mike1D.Generic (in DHI.Mike1D.Generic.dll) Version: 19.0.0.0 (11.1.1.1111)
Syntax
public interface IElementSetDefinition : IElementDefinitions, 
	IEnumerable<IElementDefinition>, IEnumerable

The IElementSetDefinition type exposes the following members.

Properties
  NameDescription
Public propertyCoorType
Type of coordinate for all vertices in elements in the set
Public propertyCount
The number of IElementDefinition's in the list
(Inherited from IElementDefinitions.)
Public propertyElementVertexCount
Number of vertices in all element in the set list. If -1, then the elements have different number of vertices, and you need to check the VertexCount for each element individually.
Public propertyElmtGeometry
Type of all elements in the set
Public propertyItem
Get or set the IElementDefinition at the specified index in the list
(Inherited from IElementDefinitions.)
Top
Methods
  NameDescription
Public methodAdd
Add a IElementDefinition to the list
(Inherited from IElementDefinitions.)
Public methodClear
Removes all elements from the List.
(Inherited from IElementDefinitions.)
Public methodFind
Searches for an element that matches the conditions defined by the specified predicate, and returns the first occurrence within the entire List.
(Inherited from IElementDefinitions.)
Public methodGetEnumerator
Returns an enumerator that iterates through the collection.
(Inherited from IEnumerableIElementDefinition.)
Public methodIndexOf
Searches for the specified object and returns the zero-based index of the first occurrence within the entire List.
(Inherited from IElementDefinitions.)
Public methodRemove
Removes the first occurrence of a specific object from the List.
(Inherited from IElementDefinitions.)
Public methodRemoveAt
Removes the element at the specified index of the List.
(Inherited from IElementDefinitions.)
Public methodToArray
Copies all elements of the list to an array.
(Inherited from IElementDefinitions.)
Top
See Also