ZennoLab Assemblies Documentation
SetSelectedItems Method
Example 

Type: System.String

The value of the selected items recorded through ";".

Sets the value of the selected items.
Syntax
public void SetSelectedItems( 
   string value
)

Parameters

value

Type: System.String

The value of the selected items recorded through ";".

Example
The following code example demonstrates uses of the SetSelectedItems method.
public static int Execute(Instance instance, IZennoPosterProjectModel project)
{
    // clear cookie
    instance.ClearCookie();
    
    // go to lessons.zennolab.com
    Tab tab = instance.MainTab;
    if ((tab.IsVoid) || (tab.IsNull)) return -1;
    if (tab.IsBusy) tab.WaitDownloading();
    tab.Navigate("lessons.zennolab.com");
    if (tab.IsBusy) tab.WaitDownloading();
    
    // find element
    HtmlElement he = instance.GetTabByAddress("page").GetDocumentByAddress("0").FindElementByName("anything[]");
    
    // set selected item
    he.SetSelectedItems("16-30");
    
    return 0;
}
public static function Execute($instance, $project)
{
    // clear cookie
    $instance->ClearCookie();
    
    // go to lessons.zennolab.com
    $tab = $instance->MainTab;
    if (($tab->IsVoid) || ($tab->IsNull)) return -1;
    if ($tab->IsBusy) $tab->WaitDownloading();
    $tab->Navigate("lessons.zennolab.com");
    if ($tab->IsBusy) $tab->WaitDownloading();
    
    // find element
    $he = $instance->GetTabByAddress("page")->GetDocumentByAddress("0")->FindElementByName("anything[]");
    
    // set selected item
    $he->SetSelectedItems("16-30");
    
    return 0;
}
Requirements

Target Platforms: Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, Windows Vista, Windows Server 2008 family, Windows Seven

See Also

Reference

HtmlElement Class
HtmlElement Members
GetSelectedItems Method
GetValue Method
SetValue Method

Send Feedback