An NDoc Documented Class Library

ListViewColumns.Item Property

[C#] In C#, this property is the indexer for the ListViewColumns class.

[Visual Basic]
Overridable  OverloadsPublic Default Property ReadOnly Item( _ 
   ByVal text As String _ 
) As ListViewColumn
[C#]
public virtual ListViewColumn this[
   string text
] { get; }
[C++]
public: virtual __property ListViewColumn* get_Item(
   String* text
);
[JScript]
returnValue = ListViewColumnsObject.Item( text );
-or-
returnValue = ListViewColumnsObject( text );

[JScript] In JScript, you can use the default indexed properties defined by a type, but you cannot explicitly define your own. However, specifying the expando attribute on a class automatically provides a default indexed property whose type is Object and whose index type is String.

See Also

ListViewColumns Class | White.Core.UIItems.ListViewItems Namespace