@@ -32,11 +32,11 @@ The `formFieldAdd` event is triggered when a new form field is added, either pro
32
32
33
33
{% tabs %}
34
34
{% highlight ts tabtitle="app.component.ts" %}
35
- {% include code-snippet/pdfviewer/addformfieldevent -cs2/src/app.component.ts %}
35
+ {% include code-snippet/pdfviewer/formfieldaddevent -cs2/src/app /app.component.ts %}
36
36
{% endhighlight %}
37
37
38
38
{% highlight ts tabtitle="main.ts" %}
39
- {% include code-snippet/pdfviewer/addformfieldevent -cs2/src/main.ts %}
39
+ {% include code-snippet/pdfviewer/formfieldaddevent -cs2/src/main.ts %}
40
40
{% endhighlight %}
41
41
{% endtabs %}
42
42
@@ -46,7 +46,7 @@ The `formFieldClick` event is triggered when a form field is clicked. The event
46
46
47
47
{% tabs %}
48
48
{% highlight ts tabtitle="app.component.ts" %}
49
- {% include code-snippet/pdfviewer/formfieldclickevent-cs2/src/app.component.ts %}
49
+ {% include code-snippet/pdfviewer/formfieldclickevent-cs2/src/app/app .component.ts %}
50
50
{% endhighlight %}
51
51
52
52
{% highlight ts tabtitle="main.ts" %}
@@ -60,7 +60,7 @@ The `formFieldDoubleClick` event is triggered when a form field is double-clicke
60
60
61
61
{% tabs %}
62
62
{% highlight ts tabtitle="app.component.ts" %}
63
- {% include code-snippet/pdfviewer/formfielddoubleclickevent-cs2/src/app.component.ts %}
63
+ {% include code-snippet/pdfviewer/formfielddoubleclickevent-cs2/src/app/app .component.ts %}
64
64
{% endhighlight %}
65
65
66
66
{% highlight ts tabtitle="main.ts" %}
@@ -74,7 +74,7 @@ The `formFieldFocusOut` event is triggered when a form field loses focus. The ev
74
74
75
75
{% tabs %}
76
76
{% highlight ts tabtitle="app.component.ts" %}
77
- {% include code-snippet/pdfviewer/formfieldfocusoutevent-cs2/src/app.component.ts %}
77
+ {% include code-snippet/pdfviewer/formfieldfocusoutevent-cs2/src/app/app .component.ts %}
78
78
{% endhighlight %}
79
79
80
80
{% highlight ts tabtitle="main.ts" %}
@@ -88,7 +88,7 @@ The `formFieldMouseLeave` event is triggered when the mouse leaves a form field.
88
88
89
89
{% tabs %}
90
90
{% highlight ts tabtitle="app.component.ts" %}
91
- {% include code-snippet/pdfviewer/formfieldmouseleaveevent-cs2/src/app.component.ts %}
91
+ {% include code-snippet/pdfviewer/formfieldmouseleaveevent-cs2/src/app/app .component.ts %}
92
92
{% endhighlight %}
93
93
94
94
{% highlight ts tabtitle="main.ts" %}
@@ -102,7 +102,7 @@ The `formFieldMouseOver` event is triggered when the mouse hovers over a form fi
102
102
103
103
{% tabs %}
104
104
{% highlight ts tabtitle="app.component.ts" %}
105
- {% include code-snippet/pdfviewer/formfieldmouseoverevent-cs2/src/app.component.ts %}
105
+ {% include code-snippet/pdfviewer/formfieldmouseoverevent-cs2/src/app/app .component.ts %}
106
106
{% endhighlight %}
107
107
108
108
{% highlight ts tabtitle="main.ts" %}
@@ -116,7 +116,7 @@ The `formFieldMove` event is triggered when the mouse moves inside a form field.
116
116
117
117
{% tabs %}
118
118
{% highlight ts tabtitle="app.component.ts" %}
119
- {% include code-snippet/pdfviewer/formfieldmousemoveevent-cs2/src/app.component.ts %}
119
+ {% include code-snippet/pdfviewer/formfieldmousemoveevent-cs2/src/app/app .component.ts %}
120
120
{% endhighlight %}
121
121
122
122
{% highlight ts tabtitle="main.ts" %}
@@ -130,7 +130,7 @@ The `formFieldPropertiesChange` event is triggered when the properties of a form
130
130
131
131
{% tabs %}
132
132
{% highlight ts tabtitle="app.component.ts" %}
133
- {% include code-snippet/pdfviewer/formfieldpropertieschangeevent-cs2/src/app.component.ts %}
133
+ {% include code-snippet/pdfviewer/formfieldpropertieschangeevent-cs2/src/app/app .component.ts %}
134
134
{% endhighlight %}
135
135
136
136
{% highlight ts tabtitle="main.ts" %}
@@ -144,7 +144,7 @@ The `formFieldRemove` event is triggered when a form field is removed from the P
144
144
145
145
{% tabs %}
146
146
{% highlight ts tabtitle="app.component.ts" %}
147
- {% include code-snippet/pdfviewer/formfieldremoveevent-cs2/src/app.component.ts %}
147
+ {% include code-snippet/pdfviewer/formfieldremoveevent-cs2/src/app/app .component.ts %}
148
148
{% endhighlight %}
149
149
150
150
{% highlight ts tabtitle="main.ts" %}
@@ -158,7 +158,7 @@ The `formFieldResize` events are triggered when a form field in a PDF is resized
158
158
159
159
{% tabs %}
160
160
{% highlight ts tabtitle="app.component.ts" %}
161
- {% include code-snippet/pdfviewer/formfieldresizeevent-cs2/src/app.component.ts %}
161
+ {% include code-snippet/pdfviewer/formfieldresizeevent-cs2/src/app/app .component.ts %}
162
162
{% endhighlight %}
163
163
164
164
{% highlight ts tabtitle="main.ts" %}
@@ -172,7 +172,7 @@ The `formFieldSelect` events are triggered when a form field in a PDF is selecte
172
172
173
173
{% tabs %}
174
174
{% highlight ts tabtitle="app.component.ts" %}
175
- {% include code-snippet/pdfviewer/formfieldselectevent-cs2/src/app.component.ts %}
175
+ {% include code-snippet/pdfviewer/formfieldselectevent-cs2/src/app/app .component.ts %}
176
176
{% endhighlight %}
177
177
178
178
{% highlight ts tabtitle="main.ts" %}
@@ -186,7 +186,7 @@ The `formFieldUnselect` events are triggered when a form field in a PDF is unsel
186
186
187
187
{% tabs %}
188
188
{% highlight ts tabtitle="app.component.ts" %}
189
- {% include code-snippet/pdfviewer/formfieldunselectevent-cs2/src/app.component.ts %}
189
+ {% include code-snippet/pdfviewer/formfieldunselectevent-cs2/src/app/app .component.ts %}
190
190
{% endhighlight %}
191
191
192
192
{% highlight ts tabtitle="main.ts" %}
@@ -200,7 +200,7 @@ The `formFieldUnselect` events are triggered when a required form field is left
200
200
201
201
{% tabs %}
202
202
{% highlight ts tabtitle="app.component.ts" %}
203
- {% include code-snippet/pdfviewer/formfieldvalidationevent-cs2/src/app.component.ts %}
203
+ {% include code-snippet/pdfviewer/formfieldvalidationevent-cs2/src/app/app .component.ts %}
204
204
{% endhighlight %}
205
205
206
206
{% highlight ts tabtitle="main.ts" %}
0 commit comments