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
'The result is a boolean value 1 (true) if the string contains the substring, or 0 otherwise. If _var_ is an array then _Result_ is a byte array of the same dimensions.',
' Set this keyword to the y-offset from the lower-left corner of the page in inches (or centimeters if CENTIMETERS is set). The default behavior is to center the graphics on the page.',
415
424
'',
416
425
'',
426
+
'',
417
427
'### Example',
418
428
'',
419
429
'The following code sample creates a bar plot and saves the image to a PNG file.',
'See Additional Examples for more code examples using the Save method.',
443
+
'',
433
444
'### Additional Examples',
434
445
'',
435
446
'The following example uses three plot graphics to create a multi-page PDF file. Each time we call the Save method we use the /APPEND keyword, and on the last call we add the /CLOSE keyword to clear out the PDF buffer.',
'The ENVI function returns a reference to the ENVI application. Use the returned reference to manipulate the application after creation by changing properties or calling methods.',
Copy file name to clipboardExpand all lines: libs/tests/hover-help/src/lib/no-end.spec.ts
+22-15Lines changed: 22 additions & 15 deletions
Original file line number
Diff line number
Diff line change
@@ -34,21 +34,24 @@ describe(`[auto generated] Correctly does not provide hover help`, () => {
34
34
'[Online Docs](https://www.nv5geospatialsoftware.com/docs/PLOT.html) | [Open Examples in Notebook](command:idl.notebooks.helpAsNotebook?%7B%22type%22:%22f%22,%22name%22:%22plot%22%7D)',
35
35
'',
36
36
'```idl',
37
-
'result = plot( [ x ], [ y ], [ format ], [ equation ], $',
38
-
' [ axis_style = String ], $',
39
-
' [ /buffer ], $',
40
-
' [ /current ], $',
41
-
' [ /device ], $',
42
-
' [ dimensions = any ], $',
43
-
' [ layout = any ], $',
44
-
' [ location = any ], $',
45
-
' [ margin = any ], $',
46
-
' [ no_toolbar = any ], $',
47
-
' [ nodata = String ], $',
48
-
' [ /overplot ], $',
49
-
' [ widgets = any ], $',
50
-
' [ _extra = any ], $',
51
-
' [ /test ])',
37
+
';+',
38
+
'; :Returns: Plot',
39
+
';+',
40
+
'result = plot(x, y, format, equation, $',
41
+
' axis_style = value, $',
42
+
' /buffer, $',
43
+
' /current, $',
44
+
' /device, $',
45
+
' dimensions = value, $',
46
+
' layout = value, $',
47
+
' location = value, $',
48
+
' margin = value, $',
49
+
' no_toolbar = value, $',
50
+
' nodata = value, $',
51
+
' /overplot, $',
52
+
' widgets = value, $',
53
+
' _extra = value, $',
54
+
' /test)',
52
55
'```',
53
56
'',
54
57
'The PLOT function draws a line plot of vector arguments. If one parameter is used, the vector parameter is plotted on the ordinate versus the point number on the abscissa. To plot one vector as a function of another, use two parameters.',
@@ -57,6 +60,7 @@ describe(`[auto generated] Correctly does not provide hover help`, () => {
@@ -82,6 +86,7 @@ describe(`[auto generated] Correctly does not provide hover help`, () => {
82
86
' If the first argument is a string, then it is assumed to represent either an equation of _X_ or the name of an IDL function that accepts an input argument _X_. Setting this argument is the same as setting the EQUATION property. See EQUATION for details.',
@@ -202,6 +207,7 @@ describe(`[auto generated] Correctly does not provide hover help`, () => {
202
207
' ',
203
208
'',
204
209
'',
210
+
'',
205
211
'### Example',
206
212
'',
207
213
'The following lines create the plot shown above.',
@@ -224,6 +230,7 @@ describe(`[auto generated] Correctly does not provide hover help`, () => {
224
230
'### Additional Examples',
225
231
'',
226
232
'See [Plot examples](command:idl.docs.openLink?%7B%22link%22:%22IDL_DOCS/../Subsystems/idl/Content/GUInavigation/visualize.htm%22%7D) for additional examples using the PLOT function.',
233
+
'',
227
234
'### Return Value',
228
235
'',
229
236
'The PLOT function returns a reference to the created graphic. Use the returned reference to manipulate the graphic after creation by changing properties or calling methods.',
0 commit comments