[C#] In C#, this property is the indexer for the XRulesDocumentList class.
[Visual Basic] Public Default Property ReadOnly Item( _ ByVal index As Integer _ ) As XRulesDocument [C#] public XRulesDocument this[ int index ] { get; } [C++] public: __property XRulesDocument* get_Item( int index ); [JScript] returnValue = XRulesDocumentListObject.Item( index ); -or- returnValue = XRulesDocumentListObject( index );
[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.
The indexer of the class. This indexer is the wrapper of the indexer of the IList interface. Its benefit is to return objects of type 'XRulesDocument' instead of objects of type 'Object'.
XRulesDocumentList Class | XRules Namespace