Search
NamedCollection(T).Item Property
See Also
 






Gets the item with the specified name. If there is no item with the specified name, the indexer has no effect.

Namespace: MindFusion.Spreadsheet
Assembly: MindFusion.Spreadsheet.WinForms

 Syntax

C#  Copy Code

public T Item [
    string name
] { get; }

Visual Basic  Copy Code

Public ReadOnly Property Item( _
    name As String _
) As T

 Parameters

name

The name of the item to get.

 Property Value

The item with the specified name.

 See Also