3dak Client

fragment.Item Property

an Article in the Article list.

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

[Visual Basic]
Public Default Property ReadOnly Item( _ 
   ByVal Int32 As Int32 _ 
) As 
[C#]
public article this[
   int Int32
] { get; }
[C++]
public: __property * get_article(
   int Int32
);
[JScript]
returnValue = fragmentObject.Item( Int32 );
-or-
returnValue = fragmentObject( Int32 );

[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.

Parameters

index
index of the article

Property Value

Remarks

To iterate the article list use the fragment object itself or the ArticleList property.

See Also

fragment Class | ppm3dakClient Namespace