// find element by attribute
HtmlElement he = instance.GetTabByAddress("page").GetDocumentByAddress("0").FindElementByAttribute("input:checkbox", "fulltag", "input:checkbox", "text", 0);
// draw to bitmap element, this element is not image and does not contain image
string toBitmap1 = he.DrawToBitmap(false);
// find element by attribute
he = instance.GetTabByAddress("page").GetDocumentByAddress("0").FindElementByAttribute("a", "href", "http://lessons.zennolab.com/ru/index", "regexp", 0);
// draw to bitmap element, this element is image or contains image
string toBitmap2 = he.DrawToBitmap(true);
// find element by attribute
$he = $instance->GetTabByAddress("page")->GetDocumentByAddress("0")->FindElementByAttribute("input:checkbox", "fulltag", "input:checkbox", "text", 0);
// draw to bitmap element, this element is not image and does not contain image
$toBitmap1 = $he->DrawToBitmap(false);
// find element by attribute
$he = $instance->GetTabByAddress("page")->GetDocumentByAddress("0")->FindElementByAttribute("a", "href", "http://lessons.zennolab.com/ru/index", "regexp", 0);
// draw to bitmap element, this element is image or contains image
$toBitmap2 = $he->DrawToBitmap(true);