sirius-client-win32 1.1.1 → 1.2.21

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (55) hide show
  1. data/lib/sirius/win32.rb +6 -0
  2. data/lib/sirius/win32/classes/Control.rb +10 -0
  3. data/lib/sirius/win32/classes/DialogBox.rb +10 -0
  4. data/lib/sirius/win32/classes/MainWindow.rb +17 -0
  5. data/lib/sirius/win32/classes/Menu.rb +10 -0
  6. data/lib/sirius/win32/classes/MenuItem.rb +10 -0
  7. data/lib/sirius/win32/classes/MovableWindow.rb +49 -0
  8. data/lib/sirius/win32/classes/TopLevelWindow.rb +32 -0
  9. data/lib/sirius/win32/classes/Window.rb +116 -0
  10. data/lib/sirius/win32/classes/controls/Button.rb +12 -0
  11. data/lib/sirius/win32/classes/controls/CheckBox.rb +12 -0
  12. data/lib/sirius/win32/classes/controls/Edit.rb +12 -0
  13. data/lib/sirius/win32/classes/controls/ListBox.rb +12 -0
  14. data/lib/sirius/win32/classes/controls/ListView.rb +12 -0
  15. data/lib/sirius/win32/classes/controls/RadioButton.rb +12 -0
  16. data/lib/sirius/win32/classes/controls/Toolbar.rb +12 -0
  17. data/lib/sirius/win32/classes/controls/UpDown.rb +12 -0
  18. data/lib/sirius/win32/core.rb +16 -0
  19. data/lib/sirius/win32/core/button/ButtonService.rb +71 -0
  20. data/lib/sirius/win32/core/button/ButtonServiceClient.rb +60 -0
  21. data/lib/sirius/win32/core/button/ButtonServiceDriver.rb +72 -0
  22. data/lib/sirius/win32/core/button/ButtonServiceMappingRegistry.rb +199 -0
  23. data/lib/sirius/win32/core/combobox/ComboBoxService.rb +471 -0
  24. data/lib/sirius/win32/core/combobox/ComboBoxServiceClient.rb +264 -0
  25. data/lib/sirius/win32/core/combobox/ComboBoxServiceDriver.rb +208 -0
  26. data/lib/sirius/win32/core/combobox/ComboBoxServiceMappingRegistry.rb +1100 -0
  27. data/lib/sirius/win32/core/dialog/DialogService.rb +187 -0
  28. data/lib/sirius/win32/core/dialog/DialogServiceClient.rb +108 -0
  29. data/lib/sirius/win32/core/dialog/DialogServiceDriver.rb +104 -0
  30. data/lib/sirius/win32/core/dialog/DialogServiceMappingRegistry.rb +424 -0
  31. data/lib/sirius/win32/core/edit/EditService.rb +358 -0
  32. data/lib/sirius/win32/core/edit/EditServiceClient.rb +216 -0
  33. data/lib/sirius/win32/core/edit/EditServiceDriver.rb +176 -0
  34. data/lib/sirius/win32/core/edit/EditServiceMappingRegistry.rb +859 -0
  35. data/lib/sirius/win32/core/listbox/ListBoxService.rb +379 -0
  36. data/lib/sirius/win32/core/listbox/ListBoxServiceClient.rb +216 -0
  37. data/lib/sirius/win32/core/listbox/ListBoxServiceDriver.rb +176 -0
  38. data/lib/sirius/win32/core/listbox/ListBoxServiceMappingRegistry.rb +880 -0
  39. data/lib/sirius/win32/core/menu/MenuService.rb +443 -0
  40. data/lib/sirius/win32/core/menu/MenuServiceClient.rb +144 -0
  41. data/lib/sirius/win32/core/menu/MenuServiceDriver.rb +128 -0
  42. data/lib/sirius/win32/core/menu/MenuServiceMappingRegistry.rb +830 -0
  43. data/lib/sirius/win32/core/tabcontrol/TabControlService.rb +286 -0
  44. data/lib/sirius/win32/core/tabcontrol/TabControlServiceClient.rb +120 -0
  45. data/lib/sirius/win32/core/tabcontrol/TabControlServiceDriver.rb +112 -0
  46. data/lib/sirius/win32/core/tabcontrol/TabControlServiceMappingRegistry.rb +583 -0
  47. data/lib/sirius/win32/core/utils/Win32UtilsService.rb +64 -0
  48. data/lib/sirius/win32/core/utils/Win32UtilsServiceClient.rb +36 -0
  49. data/lib/sirius/win32/core/utils/Win32UtilsServiceDriver.rb +56 -0
  50. data/lib/sirius/win32/core/utils/Win32UtilsServiceMappingRegistry.rb +136 -0
  51. data/lib/sirius/win32/core/window/WindowService.rb +625 -0
  52. data/lib/sirius/win32/core/window/WindowServiceClient.rb +360 -0
  53. data/lib/sirius/win32/core/window/WindowServiceDriver.rb +272 -0
  54. data/lib/sirius/win32/core/window/WindowServiceMappingRegistry.rb +1513 -0
  55. metadata +54 -2
@@ -0,0 +1,358 @@
1
+ require 'xsd/qname'
2
+
3
+ module Sirius; module Client; module Win32; module Core; module Edit
4
+
5
+ # {http:controls.classes.win32.server.sirius.org/}ReplaceSel
6
+ # arg0 - SOAP::SOAPLong
7
+ # arg1 - SOAP::SOAPString
8
  class ReplaceSel
9
+ attr_accessor :arg0
10
+ attr_accessor :arg1
11
+ def initialize(arg0 = nil, arg1 = nil) @arg0 = arg0
12
+ @arg1 = arg1
13
+ end
14
+ end
15
+ # {http:controls.classes.win32.server.sirius.org/}ReplaceSelResponse
16
+ # m_return - SOAP::SOAPInt
17
+ class ReplaceSelResponse
1
18
  def m_return
19
+ @v_return
20
+ end
21
+
22
+ def m_return=(value) @v_return = value
23
+ end
24
+
25
+ def initialize(v_return = nil) @v_return = v_return
26
+ end
27
+ end
28
+ # {http:controls.classes.win32.server.sirius.org/}LineLength
29
+ # arg0 - SOAP::SOAPLong
30
+ # arg1 - SOAP::SOAPInt
31
+ class LineLength
32
+ attr_accessor :arg0
33
+ attr_accessor :arg1
34
+ def initialize(arg0 = nil, arg1 = nil) @arg0 = arg0
35
+ @arg1 = arg1
36
+ end
37
+ end
38
+ # {http:controls.classes.win32.server.sirius.org/}LineLengthResponse
39
+ # m_return - SOAP::SOAPInt
40
+ class LineLengthResponse
2
41
  def m_return
42
+ @v_return
43
+ end
44
+
45
+ def m_return=(value) @v_return = value
46
+ end
47
+
48
+ def initialize(v_return = nil) @v_return = v_return
49
+ end
50
+ end
51
+ # {http:controls.classes.win32.server.sirius.org/}LineIndex
52
+ # arg0 - SOAP::SOAPLong
53
+ # arg1 - SOAP::SOAPInt
54
+ class LineIndex
55
+ attr_accessor :arg0
56
+ attr_accessor :arg1
57
+ def initialize(arg0 = nil, arg1 = nil) @arg0 = arg0
58
+ @arg1 = arg1
59
+ end
60
+ end
61
+ # {http:controls.classes.win32.server.sirius.org/}LineIndexResponse
62
+ # m_return - SOAP::SOAPInt
63
+ class LineIndexResponse
3
64
  def m_return
65
+ @v_return
66
+ end
67
+
68
+ def m_return=(value) @v_return = value
69
+ end
70
+
71
+ def initialize(v_return = nil) @v_return = v_return
72
+ end
73
+ end
74
+ # {http:controls.classes.win32.server.sirius.org/}Undo
75
+ # arg0 - SOAP::SOAPLong
76
+ class Undo
77
+ attr_accessor :arg0
78
+ def initialize(arg0 = nil) @arg0 = arg0
79
+ end
80
+ end
81
+ # {http:controls.classes.win32.server.sirius.org/}UndoResponse
82
+ # m_return - SOAP::SOAPInt
83
+ class UndoResponse
4
84
  def m_return
85
+ @v_return
86
+ end
87
+
88
+ def m_return=(value) @v_return = value
89
+ end
90
+
91
+ def initialize(v_return = nil) @v_return = v_return
92
+ end
93
+ end
94
+ # {http:controls.classes.win32.server.sirius.org/}LineFromChar
95
+ # arg0 - SOAP::SOAPLong
96
+ # arg1 - SOAP::SOAPInt
97
+ class LineFromChar
98
+ attr_accessor :arg0
99
+ attr_accessor :arg1
100
+ def initialize(arg0 = nil, arg1 = nil) @arg0 = arg0
101
+ @arg1 = arg1
102
+ end
103
+ end
104
+ # {http:controls.classes.win32.server.sirius.org/}LineFromCharResponse
105
+ # m_return - SOAP::SOAPInt
106
+ class LineFromCharResponse
5
107
  def m_return
108
+ @v_return
109
+ end
110
+
111
+ def m_return=(value) @v_return = value
112
+ end
113
+
114
+ def initialize(v_return = nil) @v_return = v_return
115
+ end
116
+ end
117
+ # {http:controls.classes.win32.server.sirius.org/}GetFirstVisibleLine
118
+ # arg0 - SOAP::SOAPLong
119
+ class GetFirstVisibleLine
120
+ attr_accessor :arg0
121
+ def initialize(arg0 = nil) @arg0 = arg0
122
+ end
123
+ end
124
+ # {http:controls.classes.win32.server.sirius.org/}GetFirstVisibleLineResponse
125
+ # m_return - SOAP::SOAPInt
126
+ class GetFirstVisibleLineResponse
6
127
  def m_return
128
+ @v_return
129
+ end
130
+
131
+ def m_return=(value) @v_return = value
132
+ end
133
+
134
+ def initialize(v_return = nil) @v_return = v_return
135
+ end
136
+ end
137
+ # {http:controls.classes.win32.server.sirius.org/}EmptyUndoBuffer
138
+ # arg0 - SOAP::SOAPLong
139
+ class EmptyUndoBuffer
140
+ attr_accessor :arg0
141
+ def initialize(arg0 = nil) @arg0 = arg0
142
+ end
143
+ end
144
+ # {http:controls.classes.win32.server.sirius.org/}EmptyUndoBufferResponse
145
+ # m_return - SOAP::SOAPInt
146
+ class EmptyUndoBufferResponse
7
147
  def m_return
148
+ @v_return
149
+ end
150
+
151
+ def m_return=(value) @v_return = value
152
+ end
153
+
154
+ def initialize(v_return = nil) @v_return = v_return
155
+ end
156
+ end
157
+ # {http:controls.classes.win32.server.sirius.org/}SetText
158
+ # arg0 - SOAP::SOAPLong
159
+ # arg1 - SOAP::SOAPString
160
+ class SetText
161
+ attr_accessor :arg0
162
+ attr_accessor :arg1
163
+ def initialize(arg0 = nil, arg1 = nil) @arg0 = arg0
164
+ @arg1 = arg1
165
+ end
166
+ end
167
+ # {http:controls.classes.win32.server.sirius.org/}SetTextResponse
168
+ # m_return - SOAP::SOAPBoolean
169
+ class SetTextResponse
8
170
  def m_return
171
+ @v_return
172
+ end
173
+
174
+ def m_return=(value) @v_return = value
175
+ end
176
+
177
+ def initialize(v_return = nil) @v_return = v_return
178
+ end
179
+ end
180
+ # {http:controls.classes.win32.server.sirius.org/}SetPasswordChar
181
+ # arg0 - SOAP::SOAPLong
182
+ # arg1 - SOAP::SOAPInt
183
+ class SetPasswordChar
184
+ attr_accessor :arg0
185
+ attr_accessor :arg1
186
+ def initialize(arg0 = nil, arg1 = nil) @arg0 = arg0
187
+ @arg1 = arg1
188
+ end
189
+ end
190
+ # {http:controls.classes.win32.server.sirius.org/}SetPasswordCharResponse
191
+ # m_return - SOAP::SOAPInt
192
+ class SetPasswordCharResponse
9
193
  def m_return
194
+ @v_return
195
+ end
196
+
197
+ def m_return=(value) @v_return = value
198
+ end
199
+
200
+ def initialize(v_return = nil) @v_return = v_return
201
+ end
202
+ end
203
+ # {http:controls.classes.win32.server.sirius.org/}ScrollCaret
204
+ # arg0 - SOAP::SOAPLong
205
+ class ScrollCaret
206
+ attr_accessor :arg0
207
+ def initialize(arg0 = nil) @arg0 = arg0
208
+ end
209
+ end
210
+ # {http:controls.classes.win32.server.sirius.org/}ScrollCaretResponse
211
+ # m_return - SOAP::SOAPBoolean
212
+ class ScrollCaretResponse
10
213
  def m_return
214
+ @v_return
215
+ end
216
+
217
+ def m_return=(value) @v_return = value
218
+ end
219
+
220
+ def initialize(v_return = nil) @v_return = v_return
221
+ end
222
+ end
223
+ # {http:controls.classes.win32.server.sirius.org/}SetSel
224
+ # arg0 - SOAP::SOAPLong
225
+ # arg1 - SOAP::SOAPInt
226
+ # arg2 - SOAP::SOAPInt
227
+ class SetSel
228
+ attr_accessor :arg0
229
+ attr_accessor :arg1
230
+ attr_accessor :arg2
231
+ def initialize(arg0 = nil, arg1 = nil, arg2 = nil) @arg0 = arg0
232
+ @arg1 = arg1
233
+ @arg2 = arg2
234
+ end
235
+ end
236
+ # {http:controls.classes.win32.server.sirius.org/}SetSelResponse
237
+ # m_return - SOAP::SOAPInt
238
+ class SetSelResponse
11
239
  def m_return
240
+ @v_return
241
+ end
242
+
243
+ def m_return=(value) @v_return = value
244
+ end
245
+
246
+ def initialize(v_return = nil) @v_return = v_return
247
+ end
248
+ end
249
+ # {http:controls.classes.win32.server.sirius.org/}CanUndo
250
+ # arg0 - SOAP::SOAPLong
251
+ class CanUndo
252
+ attr_accessor :arg0
253
+ def initialize(arg0 = nil) @arg0 = arg0
254
+ end
255
+ end
256
+ # {http:controls.classes.win32.server.sirius.org/}CanUndoResponse
257
+ # m_return - SOAP::SOAPInt
258
+ class CanUndoResponse
12
259
  def m_return
260
+ @v_return
261
+ end
262
+
263
+ def m_return=(value) @v_return = value
264
+ end
265
+
266
+ def initialize(v_return = nil) @v_return = v_return
267
+ end
268
+ end
269
+ # {http:controls.classes.win32.server.sirius.org/}GetPasswordChar
270
+ # arg0 - SOAP::SOAPLong
271
+ class GetPasswordChar
272
+ attr_accessor :arg0
273
+ def initialize(arg0 = nil) @arg0 = arg0
274
+ end
275
+ end
276
+ # {http:controls.classes.win32.server.sirius.org/}GetPasswordCharResponse
277
+ # m_return - SOAP::SOAPInt
278
+ class GetPasswordCharResponse
13
279
  def m_return
280
+ @v_return
281
+ end
282
+
283
+ def m_return=(value) @v_return = value
284
+ end
285
+
286
+ def initialize(v_return = nil) @v_return = v_return
287
+ end
288
+ end
289
+ # {http:controls.classes.win32.server.sirius.org/}GetSel
290
+ # arg0 - SOAP::SOAPLong
291
+ class GetSel
292
+ attr_accessor :arg0
293
+ def initialize(arg0 = nil) @arg0 = arg0
294
+ end
295
+ end
296
+ # {http:controls.classes.win32.server.sirius.org/}GetSelResponse
297
+ # m_return - SOAP::SOAPInt
298
+ class GetSelResponse
14
299
  def m_return
300
+ @v_return
301
+ end
302
+
303
+ def m_return=(value) @v_return = value
304
+ end
305
+
306
+ def initialize(v_return = nil) @v_return = v_return
307
+ end
308
+ end
309
+ # {http:controls.classes.win32.server.sirius.org/}GetLineCount
310
+ # arg0 - SOAP::SOAPLong
311
+ class GetLineCount
312
+ attr_accessor :arg0
313
+ def initialize(arg0 = nil) @arg0 = arg0
314
+ end
315
+ end
316
+ # {http:controls.classes.win32.server.sirius.org/}GetLineCountResponse
317
+ # m_return - SOAP::SOAPInt
318
+ class GetLineCountResponse
15
319
  def m_return
320
+ @v_return
321
+ end
322
+
323
+ def m_return=(value) @v_return = value
324
+ end
325
+
326
+ def initialize(v_return = nil) @v_return = v_return
327
+ end
328
+ end
329
+ # {http:controls.classes.win32.server.sirius.org/}GetModify
330
+ # arg0 - SOAP::SOAPLong
331
+ class GetModify
332
+ attr_accessor :arg0
333
+ def initialize(arg0 = nil) @arg0 = arg0
334
+ end
335
+ end
336
+ # {http:controls.classes.win32.server.sirius.org/}GetModifyResponse
337
+ # m_return - SOAP::SOAPInt
338
+ class GetModifyResponse
16
339
  def m_return
340
+ @v_return
341
+ end
342
+
343
+ def m_return=(value) @v_return = value
344
+ end
345
+
346
+ def initialize(v_return = nil) @v_return = v_return
347
+ end
348
+ end
349
+ # {http:controls.classes.win32.server.sirius.org/}Scroll
350
+ # arg0 - SOAP::SOAPLong
351
+ # arg1 - SOAP::SOAPInt
352
+ # arg2 - SOAP::SOAPInt
353
+ class Scroll
354
+ attr_accessor :arg0
355
+ attr_accessor :arg1
356
+ attr_accessor :arg2
357
+ def initialize(arg0 = nil, arg1 = nil, arg2 = nil) @arg0 = arg0
358
+ @arg1 = arg1
359
+ @arg2 = arg2
360
+ end
361
+ end
362
+ # {http:controls.classes.win32.server.sirius.org/}ScrollResponse
363
+ # m_return - SOAP::SOAPInt
364
+ class ScrollResponse
17
365
  def m_return
366
+ @v_return
367
+ end
368
+
369
+ def m_return=(value) @v_return = value
370
+ end
371
+
372
+ def initialize(v_return = nil) @v_return = v_return
373
+ end
374
+ end
375
+
376
+ end; end; end; end; end
@@ -0,0 +1,216 @@
1
+ #!/usr/bin/env ruby
2
+ require 'EditServiceDriver.rb'
3
+
4
+ Sirius::Client::Win32::Core::Edit
5
+
6
+ endpoint_url = ARGV.shift
7
+ obj = Edit.new(endpoint_url)
8
+
9
+ # run ruby with -d to see SOAP wiredumps.
10
+ obj.wiredump_dev = STDERR if $DEBUG
11
+
12
+ # SYNOPSIS
13
+ # getLineCount(parameters)
14
+ #
15
+ # ARGS
16
+ # parameters GetLineCount - {http://controls.classes.win32.server.sirius.org/}GetLineCount
17
+ #
18
+ # RETURNS
19
+ # parameters GetLineCountResponse - {http://controls.classes.win32.server.sirius.org/}GetLineCountResponse
20
+ #
21
+ parameters = nil
22
+ puts obj.getLineCount(parameters)
23
+
24
+ # SYNOPSIS
25
+ # lineLength(parameters)
26
+ #
27
+ # ARGS
28
+ # parameters LineLength - {http://controls.classes.win32.server.sirius.org/}LineLength
29
+ #
30
+ # RETURNS
31
+ # parameters LineLengthResponse - {http://controls.classes.win32.server.sirius.org/}LineLengthResponse
32
+ #
33
+ parameters = nil
34
+ puts obj.lineLength(parameters)
35
+
36
+ # SYNOPSIS
37
+ # setText(parameters)
38
+ #
39
+ # ARGS
40
+ # parameters SetText - {http://controls.classes.win32.server.sirius.org/}SetText
41
+ #
42
+ # RETURNS
43
+ # parameters SetTextResponse - {http://controls.classes.win32.server.sirius.org/}SetTextResponse
44
+ #
45
+ parameters = nil
46
+ puts obj.setText(parameters)
47
+
48
+ # SYNOPSIS
49
+ # scroll(parameters)
50
+ #
51
+ # ARGS
52
+ # parameters Scroll - {http://controls.classes.win32.server.sirius.org/}Scroll
53
+ #
54
+ # RETURNS
55
+ # parameters ScrollResponse - {http://controls.classes.win32.server.sirius.org/}ScrollResponse
56
+ #
57
+ parameters = nil
58
+ puts obj.scroll(parameters)
59
+
60
+ # SYNOPSIS
61
+ # canUndo(parameters)
62
+ #
63
+ # ARGS
64
+ # parameters CanUndo - {http://controls.classes.win32.server.sirius.org/}CanUndo
65
+ #
66
+ # RETURNS
67
+ # parameters CanUndoResponse - {http://controls.classes.win32.server.sirius.org/}CanUndoResponse
68
+ #
69
+ parameters = nil
70
+ puts obj.canUndo(parameters)
71
+
72
+ # SYNOPSIS
73
+ # getSel(parameters)
74
+ #
75
+ # ARGS
76
+ # parameters GetSel - {http://controls.classes.win32.server.sirius.org/}GetSel
77
+ #
78
+ # RETURNS
79
+ # parameters GetSelResponse - {http://controls.classes.win32.server.sirius.org/}GetSelResponse
80
+ #
81
+ parameters = nil
82
+ puts obj.getSel(parameters)
83
+
84
+ # SYNOPSIS
85
+ # setSel(parameters)
86
+ #
87
+ # ARGS
88
+ # parameters SetSel - {http://controls.classes.win32.server.sirius.org/}SetSel
89
+ #
90
+ # RETURNS
91
+ # parameters SetSelResponse - {http://controls.classes.win32.server.sirius.org/}SetSelResponse
92
+ #
93
+ parameters = nil
94
+ puts obj.setSel(parameters)
95
+
96
+ # SYNOPSIS
97
+ # replaceSel(parameters)
98
+ #
99
+ # ARGS
100
+ # parameters ReplaceSel - {http://controls.classes.win32.server.sirius.org/}ReplaceSel
101
+ #
102
+ # RETURNS
103
+ # parameters ReplaceSelResponse - {http://controls.classes.win32.server.sirius.org/}ReplaceSelResponse
104
+ #
105
+ parameters = nil
106
+ puts obj.replaceSel(parameters)
107
+
108
+ # SYNOPSIS
109
+ # lineIndex(parameters)
110
+ #
111
+ # ARGS
112
+ # parameters LineIndex - {http://controls.classes.win32.server.sirius.org/}LineIndex
113
+ #
114
+ # RETURNS
115
+ # parameters LineIndexResponse - {http://controls.classes.win32.server.sirius.org/}LineIndexResponse
116
+ #
117
+ parameters = nil
118
+ puts obj.lineIndex(parameters)
119
+
120
+ # SYNOPSIS
121
+ # lineFromChar(parameters)
122
+ #
123
+ # ARGS
124
+ # parameters LineFromChar - {http://controls.classes.win32.server.sirius.org/}LineFromChar
125
+ #
126
+ # RETURNS
127
+ # parameters LineFromCharResponse - {http://controls.classes.win32.server.sirius.org/}LineFromCharResponse
128
+ #
129
+ parameters = nil
130
+ puts obj.lineFromChar(parameters)
131
+
132
+ # SYNOPSIS
133
+ # getModify(parameters)
134
+ #
135
+ # ARGS
136
+ # parameters GetModify - {http://controls.classes.win32.server.sirius.org/}GetModify
137
+ #
138
+ # RETURNS
139
+ # parameters GetModifyResponse - {http://controls.classes.win32.server.sirius.org/}GetModifyResponse
140
+ #
141
+ parameters = nil
142
+ puts obj.getModify(parameters)
143
+
144
+ # SYNOPSIS
145
+ # scrollCaret(parameters)
146
+ #
147
+ # ARGS
148
+ # parameters ScrollCaret - {http://controls.classes.win32.server.sirius.org/}ScrollCaret
149
+ #
150
+ # RETURNS
151
+ # parameters ScrollCaretResponse - {http://controls.classes.win32.server.sirius.org/}ScrollCaretResponse
152
+ #
153
+ parameters = nil
154
+ puts obj.scrollCaret(parameters)
155
+
156
+ # SYNOPSIS
157
+ # emptyUndoBuffer(parameters)
158
+ #
159
+ # ARGS
160
+ # parameters EmptyUndoBuffer - {http://controls.classes.win32.server.sirius.org/}EmptyUndoBuffer
161
+ #
162
+ # RETURNS
163
+ # parameters EmptyUndoBufferResponse - {http://controls.classes.win32.server.sirius.org/}EmptyUndoBufferResponse
164
+ #
165
+ parameters = nil
166
+ puts obj.emptyUndoBuffer(parameters)
167
+
168
+ # SYNOPSIS
169
+ # getFirstVisibleLine(parameters)
170
+ #
171
+ # ARGS
172
+ # parameters GetFirstVisibleLine - {http://controls.classes.win32.server.sirius.org/}GetFirstVisibleLine
173
+ #
174
+ # RETURNS
175
+ # parameters GetFirstVisibleLineResponse - {http://controls.classes.win32.server.sirius.org/}GetFirstVisibleLineResponse
176
+ #
177
+ parameters = nil
178
+ puts obj.getFirstVisibleLine(parameters)
179
+
180
+ # SYNOPSIS
181
+ # getPasswordChar(parameters)
182
+ #
183
+ # ARGS
184
+ # parameters GetPasswordChar - {http://controls.classes.win32.server.sirius.org/}GetPasswordChar
185
+ #
186
+ # RETURNS
187
+ # parameters GetPasswordCharResponse - {http://controls.classes.win32.server.sirius.org/}GetPasswordCharResponse
188
+ #
189
+ parameters = nil
190
+ puts obj.getPasswordChar(parameters)
191
+
192
+ # SYNOPSIS
193
+ # setPasswordChar(parameters)
194
+ #
195
+ # ARGS
196
+ # parameters SetPasswordChar - {http://controls.classes.win32.server.sirius.org/}SetPasswordChar
197
+ #
198
+ # RETURNS
199
+ # parameters SetPasswordCharResponse - {http://controls.classes.win32.server.sirius.org/}SetPasswordCharResponse
200
+ #
201
+ parameters = nil
202
+ puts obj.setPasswordChar(parameters)
203
+
204
+ # SYNOPSIS
205
+ # undo(parameters)
206
+ #
207
+ # ARGS
208
+ # parameters Undo - {http://controls.classes.win32.server.sirius.org/}Undo
209
+ #
210
+ # RETURNS
211
+ # parameters UndoResponse - {http://controls.classes.win32.server.sirius.org/}UndoResponse
212
+ #
213
+ parameters = nil
214
+ puts obj.undo(parameters)
215
+
216
+ Sirius::Client::Win32::Core::Edit