Search
HeaderCollection.Contains Method
See Also
 






Checks whether a Header is in the collection.

Namespace: MindFusion.Diagramming.Lanes
Assembly: MindFusion.Diagramming

 Syntax

C#  Copy Code

public bool Contains (
    Header header
)

Visual Basic  Copy Code

Public Function Contains( _
    header As Header _
) As Boolean

 Parameters

header

The Header to locate in the collection.

 Return Value

true if the header was found in the collection; otherwise, false.

 Remarks

Call the method to determine whether a Header is contained within the collection. If not, you can add it with the Add method. Otherwise, if it is there, you can remove it with Remove.

 See Also