Parameters
- isImage
Type: System.Boolean
true if the tag of this of the element is "img", otherwise, false.
Return Value
Type: System.String
The image as a string value.
The following code example demonstrates uses of the DrawToBitmap method
| C# | Copy Code |
|---|---|
HtmlElement he = instance.GetTabByAddress("page").GetDocumentByAddress("0").FindElementByAttribute("input:checkbox", "fulltag", "input:checkbox", "text", 0); string toBitmap1 = he.DrawToBitmap(false); he = instance.GetTabByAddress("page").GetDocumentByAddress("0").FindElementByAttribute("a", "href", "http://lessons.zennolab.com/ru/index", "regexp", 0); string toBitmap2 = he.DrawToBitmap(true); | |
| PHP | Copy Code |
|---|---|
$he = $instance->GetTabByAddress("page")->GetDocumentByAddress("0")->FindElementByAttribute("input:checkbox", "fulltag", "input:checkbox", "text", 0); $toBitmap1 = $he->DrawToBitmap(false); $he = $instance->GetTabByAddress("page")->GetDocumentByAddress("0")->FindElementByAttribute("a", "href", "http://lessons.zennolab.com/ru/index", "regexp", 0); $toBitmap2 = $he->DrawToBitmap(true); | |
If the html element has the tag "img" and the method's parameter is true, then this method executes faster.
Target Platforms: Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, Windows Vista, Windows Server 2008 family