Style.Item[String] Property

Definition

Gets the value of the specified style that matches the name given in the styleName parameter. In C#, this property is the indexer for the Style class.

public:
 virtual property System::Object ^ default[System::String ^] { System::Object ^ get(System::String ^ styleName); };
public override object this[string styleName] { get; }
member this.Item(string) : obj
Default Public Overrides ReadOnly Property Item(styleName As String) As Object

Parameters

styleName
String

The name of the style to search for in the collection.

Property Value

An object containing the value of the style that matches the name given in the styleName parameter.

Remarks

In Microsoft 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.

Applies to