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
Help Insight, a feature of the Delphi IDE that displays a popup with a brief description of the identifier (class, procedure, function, variable, constant, enumerated...) on which the mouse cursor is positioned.
13
-
14
-
In this repository/article we will see how to create and customize Help Insight for our applications.
15
-
16
5
## 📞 Contacts
17
6
18
7
<palign="left">
@@ -33,10 +22,11 @@ In this repository/article we will see how to create and customize Help Insight
33
22
</a>
34
23
</p>
35
24
36
-
## WHAT IS IT HELP INSIGHT?
37
-
Help Insight is a feature of the Delphi IDE that presents a popup with a brief description of the identifier (class, procedure, function, variable, Enumerated, ...) at which the mouse cursor is positioned in the Code Editor.
38
-
It is also possible to invoke Help Insight by pressing the CTRL + SHIFT + H keys.
25
+
#Help Insight **Delphi**
26
+
27
+
Help Insight, a feature of the Delphi IDE that displays a popup with a brief description of the identifier (class, procedure, function, variable, constant, enumerated...) at which the mouse cursor is positioned in the Code Editor. It is also possible to invoke Help Insight by pressing the CTRL + SHIFT + H keys.
39
28
29
+
In this repository/article we will see how to create and customize Help Insight for our applications.
40
30
41
31
<br/>
42
32
@@ -145,21 +135,23 @@ These comments must be immediately above the identifier, and must begin with **/
145
135
```
146
136
<c> Texto com fonte de largura fixa (Courier New) </c>
147
137
```
148
-
*Reference to a specific type, symbol or identifier:
138
+
Reference to a specific type, symbol or identifier:
149
139
```
150
140
<see cref="string"/>
151
141
```
152
142
143
+
<br/>
144
+
153
145
## WHERE CAN HELP INSIGHT BE USED?
154
-
*Help Insight can be used in:
146
+
Help Insight can be used in:
155
147
156
-
-[x]Classes
157
-
-[x]Procedures
158
-
-[x]Functions
159
-
-[x]Constantes
160
-
-[x]Enumerados
161
-
-[x]Instance variables (declared in the private, protected, public or published scope of the classes)'
162
-
-[ ] Local variables **ARE NOT SUPPORTED** by Help Insight
148
+
✔️ Classes <br/>
149
+
✔️ Procedures <br/>
150
+
✔️ Functions <br/>
151
+
✔️ Constantes <br/>
152
+
✔️ Enumerados <br/>
153
+
✔️ Instance variables (declared in the private, protected, public or published scope of the classes) <br/>
154
+
❌ Local variables **ARE NOT SUPPORTED** by Help Insight
Help Insight, um recurso do IDE do Delphi que exibe um popup com uma breve descrição sobre o identificador (classe, procedure, function, variável, constante, enumerado ...) na qual o cursor do mouse está posicionado.
13
-
14
-
Veremos neste repositório/artigo criar e personalizar Help Insight para nassas aplicações.
@@ -34,9 +25,10 @@ Veremos neste repositório/artigo criar e personalizar Help Insight para nassas
34
25
</p>
35
26
36
27
## O QUE É HELP INSIGHT?
37
-
Help Insight, é um recurso do IDE do Delphi que apresenta um popup com uma breve descrição sobre o identificador (classe, procedure, function, variável, Enumerado, ...) a qual o cursor do mouse está posicionado no Editor de Códigos.
38
-
Também é possível invocar o Help Insight precionando as teclas CTRL + SHIFT + H.
39
28
29
+
Help Insight (informações de ajuda), um recurso do IDE do Delphi que exibe um popup com uma breve descrição sobre o identificador (classe, procedure, function, variável, constante, enumerado...) a qual o cursor do mouse está posicionado no Editor de Códigos. Também é possível invocar o Help Insight precionando as teclas CTRL + SHIFT + H
30
+
31
+
Veremos neste repositório/artigo criar e personalizar Help Insight para nossas aplicações.
40
32
41
33
<br/>
42
34
@@ -150,6 +142,8 @@ Referência a um tipo, símbolo ou identificador específico:
150
142
<see cref="string"/>
151
143
```
152
144
145
+
<br/>
146
+
153
147
## ONDE O HELP INSIGHT PODE SER USADO?
154
148
Help Insight podem ser utilizados em:
155
149
@@ -158,9 +152,10 @@ Help Insight podem ser utilizados em:
158
152
✔️ Functions <br/>
159
153
✔️ Constantes <br/>
160
154
✔️ Enumerados <br/>
161
-
✔️ Variáveis de instância (declaradas no escopo private, protected, public ou published das classes)' <br/>
155
+
✔️ Variáveis de instância (declaradas no escopo private, protected, public ou published das classes) <br/>
162
156
❌ Variáveis locais **NÃO SÃO SUPORTADAS** pelo Help Insight
163
157
158
+
<br/>
164
159
165
160
## ALTERANDO OS DADOS E LAYOUT DO POPUP
166
161
Além de utilizarmos as TAGs disponibilizadas e demonstradas neste artigo, podemos também alterar ou adicionar nossas próprias TAGs XML, assim como alterar o Layout do popup exibido.
0 commit comments