3dak Client

fragment.ArticleList Property

List of all Articles in this Fragment

[Visual Basic]
Public Property ReadOnly List<T> As 
[C#]
public List<T> List<T> { get; }
[C++]
public: __property * get_List<T>();
[JScript]
public function get List<T>() : List<T>

Property Value

Remarks

The article list is also the default property of the fragment object

for each a as ppm3dakClient.article in MyFragment
 response.write(a.getText("Title"))
next
is equal to:
for each a as ppm3dakClient.article in MyFragment.ArticleList
 response.write(a.getText("Title"))
next

See Also

fragment Class | ppm3dakClient Namespace