Adds the documents of the specified collection to the end of the DocumentCollection.
| C# | |
|---|---|
public void AddRange( DocumentCollection documents ) | |
Parameters
- documents
Type: Zennolab.CommandCenter.DocumentCollection
The collection whose documents should be added to the end of the DocumentCollection. The collection itself cannot be null.
The order of the elements in the collection is preserved in the DocumentCollection.
The following code example demonstrates the AddRange method and various other methods of the DocumentCollection class that act on ranges. The AddRange method is called, with the collection as its argument. The result is that the current elements of the list are added to the end of the list, duplicating all the elements.
| C# | Copy Code |
|---|---|
public static int Execute(Instance instance, IZennoPosterProjectModel project) { // clear cookie instance.ClearCookie(); // go to zennolab.com Tab tab = instance.MainTab; if ((tab.IsVoid) || (tab.IsNull)) return -1; if (tab.IsBusy) tab.WaitDownloading(); tab.Navigate("zennolab.com"); if (tab.IsBusy) tab.WaitDownloading(); // get all documents from zennolab.com DocumentCollection docCol = tab.AllDocuments; // go to lessons.zennolab.com if ((tab.IsVoid) || (tab.IsNull)) return -1; if (tab.IsBusy) tab.WaitDownloading(); tab.Navigate("lessons.zennolab.com"); if (tab.IsBusy) tab.WaitDownloading(); // get all documents from lessons.zennolab.com DocumentCollection newDocCol = tab.AllDocuments; // add elements from second collection to first collection docCol.AddRange(newDocCol); return 0; } | |
| PHP | Copy Code |
|---|---|
public static function Execute($instance, $project) { // clear cookie $instance->ClearCookie(); // go to zennolab.com $tab = $instance->MainTab; if (($tab->IsVoid) || ($tab->IsNull)) return -1; if ($tab->IsBusy) $tab->WaitDownloading(); $tab->Navigate("zennolab.com"); if ($tab->IsBusy) $tab->WaitDownloading(); // get all documents from zennolab.com $docCol = $tab->AllDocuments; // go to lessons.zennolab.com if (($tab->IsVoid) || ($tab->IsNull)) return -1; if ($tab->IsBusy) $tab->WaitDownloading(); $tab->Navigate("lessons.zennolab.com"); if ($tab->IsBusy) $tab->WaitDownloading(); // get all documents from lessons.zennolab.com $newDocCol = $tab->AllDocuments; // add elements from second collection to first collection $docCol->AddRange($newDocCol); return 0; } | |
Target Platforms: Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, Windows Vista, Windows Server 2008 family