You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If I have changed app window size the images are appeared with real size.
PascalABC.NET code for
procedurePABCHelpForm.contentPanel_ImageLoad(sender: Object; e: TheArtOfDev.HtmlRenderer.Core.Entities.HtmlImageLoadEventArgs);
begin
e.Handled := false;
//внешний ресурсif(e.Src.StartsWith('http')) then Exit;
var uri := rootUri + fixUri(e.Src);
if(FileExists(uri)) thenbeginvar img := Image.FromFile(uri);
//img
e.Attributes.Item['src'] := uri;
//e.Attributes.Item['width'] := IntToStr(img.Width);//e.Attributes.Item['height'] := IntToStr(img.Height);
e.Callback(img);
e.Handled := true;
end;
end;
Html code for
<h1>Анализ Кода Времени Разработки (Intellisense)</h1><p><ahref="!Keyword_and_words">Keyword</a></p><p>1. Подсказка по
Ctrl+пробел выводит список всех доступных имен. </p><p><imgsrc="/images/intellisense1.png" alt="first screenshot" /></p><p>
2. Подсказка по Shift+пробел выводит
список всех доступных имен из текущего модуля. Также добавился комментарий ///
который позволяет связать подсказку с элементом программы (процедура, функция,
переменная) </span></p><p><imgsrc="../images/intellisense2.png"></p><p>3. Подсказка по "точке". Если после имени
была нажата точка, то выдается список его членов.</p><p><imgsrc="../images/intellisense3.png" border="0"></p>
4. Подсказка параметров функций
<p><imgsrc="../images/intellisense4.png">
The text was updated successfully, but these errors were encountered:
Any chance to fix?
Screenshot with issue.
If I have changed app window size the images are appeared with real size.
PascalABC.NET code for
Html code for
The text was updated successfully, but these errors were encountered: