本文整理汇总了C#中IHTMLElement.scrollIntoView方法的典型用法代码示例。如果您正苦于以下问题:C# IHTMLElement.scrollIntoView方法的具体用法?C# IHTMLElement.scrollIntoView怎么用?C# IHTMLElement.scrollIntoView使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类IHTMLElement
的用法示例。
在下文中一共展示了IHTMLElement.scrollIntoView方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: GetElementPreviewImage
private static Bitmap GetElementPreviewImage(IHTMLDocument3 doc3, IHTMLElement element, int snapshotWidth, int snapshotHeight)
{
try
{
// @RIBBON TODO: Need to make this work for RTL as well.
IDisplayServices displayServices = ((IDisplayServices)doc3);
element.scrollIntoView(true);
tagPOINT offset = new tagPOINT();
offset.x = 0;
offset.y = 0;
displayServices.TransformPoint(ref offset, _COORD_SYSTEM.COORD_SYSTEM_CONTENT, _COORD_SYSTEM.COORD_SYSTEM_GLOBAL, element);
using (Bitmap snapshotAfter = HtmlScreenCaptureCore.TakeSnapshot((IViewObject)doc3, snapshotWidth, snapshotHeight))
{
//snapshotAfter.Save(@"c:\temp\snapshot" + element.id + ".bmp");
Rectangle elementRect;
elementRect = new Rectangle(Math.Max(2, offset.x), 2, Math.Min(element.offsetWidth, element.offsetParent.offsetWidth), element.offsetHeight);
if (element.offsetWidth <= 0 || element.offsetHeight <= 0)
return null;
Bitmap cropped = ImageHelper2.CropBitmap(snapshotAfter, elementRect);
//cropped.Save(@"c:\temp\snapshot" + element.id + ".cropped.bmp");
return cropped;
}
}
catch (Exception ex)
{
Trace.Fail("Failed to get element preview image for id " + element.id + ": " + ex);
return null;
}
}