usage events.html

来自「ATViewer is a component for Delphi/C++Bu」· HTML 代码 · 共 51 行

HTML
51
字号
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"><html>
<head>
  <meta content="text/html; charset=ISO-8859-1" http-equiv="content-type">
  <title>Usage: Events</title>
  <link href="Main.css" rel="stylesheet" type="text/css">
</head>
<body>

<h2>Events</h2>
<hr>

<table style="text-align: left; width: 100%;" border="1" cellpadding="2" cellspacing="2">
<tbody>
<tr>
  <td style="width: 40%;"><font color="DarkBlue">OnSelectionChange</font></td>
  <td>Fired on text selection change.</td>
</tr>
<tr>
  <td><font color="DarkBlue">OnOptionsChange</font></td>
  <td>Fired after an option has been changed by a user.<br>
    Examples of such changable options:
    <ul>
    <li> Text encoding can be changed using right-click menu
    <li> Font size can be changed using Ctrl + Mouse wheel
    </ul>
  </td>
</tr>
<tr>
  <td><font color="DarkBlue">OnFileReload</font></td>
  <td>Fired after file auto-reload complete (when AutoReload = True).</td>
</tr>
<tr>
  <td><font color="DarkBlue">OnSearchProgress</font></td>
  <td>Fired on text search progress.<br>
  It is of type:
<pre>
  TATStreamSearchProgress = procedure(
    const ACurrentPos, AMaximalPos: Int64;
    var AContinueSearching: Boolean) of object;</pre>
ACurrentPos: current search position;<br>
AMaximalPos: maximal search position (almost equals to file size);<br>
AContinueSearching: if changed to False then search will be stopped.
  </td>
</tr>
</tbody>
</table>

</body>
</html>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?