[C#] In C#, this property is the indexer for the ParticleList class.
[Visual Basic] Public Default Property Item( _ ByVal index As Integer _ ) As IDynamicParticle [C#] public IDynamicParticle this[ int index ] { get; set; } [C++] public: __property IDynamicParticle* get_Item( int index ); public: __property void set_Item( int index, IDynamicParticle* newValue ); [JScript] returnValue = ParticleListObject.Item( index ); ParticleListObject.Item( index ) = newValue; -or- returnValue = ParticleListObject( index ); ParticleListObject( index ) = newValue;
[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 that implements the interface 'IDynamicParticle' instead of objects of type 'Object'.
ParticleList Class | XRules Namespace