[C#] In C#, this property is the indexer for the ArticleVersion class.
[Visual Basic] Public Default Property text( _ ByVal String As String _ ) As [C#] public string this[ string String ] { get; set; } [C++] public: __property * get_String( String* String ); public: __property void set_String( String* String, String* newValue ); [JScript] returnValue = ArticleVersionObject.Item( String ); ArticleVersionObject.Item( String ) = newValue; -or- returnValue = ArticleVersionObject( String ); ArticleVersionObject( String ) = 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.
ArticleVersion Class | ppm3dakClient.Management.Storage Namespace