forked from baldurk/renderdoc
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathScintillaNET.xml
More file actions
4556 lines (4548 loc) · 220 KB
/
ScintillaNET.xml
File metadata and controls
4556 lines (4548 loc) · 220 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0"?>
<doc>
<assembly>
<name>ScintillaNET</name>
</assembly>
<members>
<member name="T:ScintillaNET.StyleRunWriter">
<summary>
Provides a writer paradigm for building a <see cref="T:ScintillaNET.StyleRun"/> list and optionally
the text that is being styled.
</summary>
</member>
<member name="M:ScintillaNET.StyleRunWriter.GetStringBuilder">
<summary>
Returns the underlying <see cref="T:System.Text.StringBuilder"/>.
</summary>
<returns>The underlying <see cref="T:System.Text.StringBuilder"/> if one was provided; otherwise, null.</returns>
</member>
<member name="M:ScintillaNET.StyleRunWriter.GetStyles">
<summary>
Returns a <see cref="T:ScintillaNET.StyleRun"/> enumerable built by the <see cref="T:ScintillaNET.StyleRunWriter"/> thus far.
</summary>
<returns>A <see cref="T:ScintillaNET.StyleRun"/> enumerable representing the style runs written thus far.</returns>
</member>
<member name="M:ScintillaNET.StyleRunWriter.Write(System.String,System.Int32)">
<summary>
Writes a run of the specified string length in the specified style.
</summary>
<param name="value">
The string that determines the run length. If a <see cref="T:System.Text.StringBuilder"/> was used to
create the <see cref="T:ScintillaNET.StyleRunWriter"/> the string value will also be appended.
</param>
<param name="style">The zero-based index of the style for this run.</param>
</member>
<member name="M:ScintillaNET.StyleRunWriter.#ctor(System.Text.StringBuilder)">
<summary>
Initializes a new instance of the <see cref="T:ScintillaNET.StyleRunWriter"/> class.
</summary>
<param name="stringBuilder">The optional <see cref="T:System.Text.StringBuilder"/> to write to.</param>
</member>
<member name="T:ScintillaNET.StyleNeededEventArgs">
<summary>
Provides data for the StyleNeeded event
</summary>
</member>
<member name="M:ScintillaNET.StyleNeededEventArgs.#ctor(ScintillaNET.Range)">
<summary>
Initializes a new instance of the StyleNeededEventArgs class.
</summary>
<param name="range">the document range that needs styling</param>
</member>
<member name="P:ScintillaNET.StyleNeededEventArgs.Range">
<summary>
Returns the document range that needs styling
</summary>
</member>
<member name="T:ScintillaNET.StyleChangedEventArgs">
<summary>
Provides data for the StyleChanged event
</summary>
<remarks>
StyleChangedEventHandler is used for the StyleChanged Event which is also used as
a more specific abstraction around the SCN_MODIFIED notification message.
</remarks>
</member>
<member name="T:ScintillaNET.ModifiedEventArgs">
<summary>
Base class for modified events
</summary>
<remarks>
ModifiedEventArgs is the base class for all events that are fired
in response to an SCN_MODIFY notification message. They all have
the Undo/Redo flags in common and I'm also including the raw
modificationType integer value for convenience purposes.
</remarks>
</member>
<member name="P:ScintillaNET.StyleChangedEventArgs.Length">
<summary>
Returns how many characters have changed
</summary>
</member>
<member name="P:ScintillaNET.StyleChangedEventArgs.Position">
<summary>
Returns the starting document position where the style has been changed
</summary>
</member>
<member name="T:ScintillaNET.TopLevelHelper">
<summary>
Top level ScintillaHelpers Like Style and Folding inherit from this class so they don't have
to reimplement the same Equals method
</summary>
</member>
<member name="M:ScintillaNET.ScintillaHelperBase.Equals(System.Object)">
<summary>
Abstract Equals Override. All Helpers must implement this. Use IsSameHelperFamily to
determine if the types are compatible and they have the same Scintilla. For most top
level helpers like Caret and Lexing this should be enough. Helpers like Marker and
Line also need to take other variables into consideration.
</summary>
<param name="obj"></param>
<returns></returns>
</member>
<member name="M:ScintillaNET.ScintillaHelperBase.IsSameHelperFamily(System.Object)">
<summary>
Determines if obj belongs to the same Scintilla and is of compatible type
</summary>
</member>
<member name="T:ScintillaNET.RangeToFormat">
<summary>
Struct used for passing parameters to FormatRange()
</summary>
</member>
<member name="F:ScintillaNET.RangeToFormat.hdc">
<summary>
The HDC (device context) we print to
</summary>
</member>
<member name="F:ScintillaNET.RangeToFormat.hdcTarget">
<summary>
The HDC we use for measuring (may be same as hdc)
</summary>
</member>
<member name="F:ScintillaNET.RangeToFormat.rc">
<summary>
Rectangle in which to print
</summary>
</member>
<member name="F:ScintillaNET.RangeToFormat.rcPage">
<summary>
Physically printable page size
</summary>
</member>
<member name="F:ScintillaNET.RangeToFormat.chrg">
<summary>
Range of characters to print
</summary>
</member>
<member name="T:ScintillaNET.Properties.Resources">
<summary>
A strongly-typed resource class, for looking up localized strings, etc.
</summary>
</member>
<member name="P:ScintillaNET.Properties.Resources.ResourceManager">
<summary>
Returns the cached ResourceManager instance used by this class.
</summary>
</member>
<member name="P:ScintillaNET.Properties.Resources.Culture">
<summary>
Overrides the current thread's CurrentUICulture property for all
resource lookups using this strongly typed resource class.
</summary>
</member>
<member name="P:ScintillaNET.Properties.Resources.Exception_CannotCreateDirectFunction">
<summary>
Looks up a localized string similar to Cannot create the Scintilla direct message function..
</summary>
</member>
<member name="P:ScintillaNET.Properties.Resources.Exception_CannotLoadModule">
<summary>
Looks up a localized string similar to Cannot load the '{0}' module into memory..
</summary>
</member>
<member name="P:ScintillaNET.Properties.Resources.Exception_EmptyStringArgument">
<summary>
Looks up a localized string similar to The '{0}' argument cannot be an empty string..
</summary>
</member>
<member name="P:ScintillaNET.Properties.Resources.Exception_EnumeratorEnded">
<summary>
Looks up a localized string similar to Enumeration already finished..
</summary>
</member>
<member name="P:ScintillaNET.Properties.Resources.Exception_EnumeratorNotStarted">
<summary>
Looks up a localized string similar to Enumeration has not started. Call MoveNext..
</summary>
</member>
<member name="P:ScintillaNET.Properties.Resources.Exception_IllegalCrossThreadCall">
<summary>
Looks up a localized string similar to Cross-thread operation not valid: Control '{0}' accessed from a thread other than the thread it was created on..
</summary>
</member>
<member name="P:ScintillaNET.Properties.Resources.Exception_IndexOutOfRange">
<summary>
Looks up a localized string similar to Index was out of range. Must be non-negative and less than the size of the collection..
</summary>
</member>
<member name="P:ScintillaNET.Properties.Resources.Exception_InsufficientSpace">
<summary>
Looks up a localized string similar to Insufficient space in the target location to copy the information..
</summary>
</member>
<member name="P:ScintillaNET.Properties.Resources.Exception_InvalidAnnotation">
<summary>
Looks up a localized string similar to A change in the control who created this annotation has rendered the object invalid..
</summary>
</member>
<member name="P:ScintillaNET.Properties.Resources.Exception_InvalidLine">
<summary>
Looks up a localized string similar to The {0} line must specify a valid line within the document..
</summary>
</member>
<member name="P:ScintillaNET.Properties.Resources.Exception_InvalidLineRange">
<summary>
Looks up a localized string similar to The start line and end line must specify a valid range..
</summary>
</member>
<member name="P:ScintillaNET.Properties.Resources.Exception_InvalidModule">
<summary>
Looks up a localized string similar to '{0}' is not a valid Scintilla module..
</summary>
</member>
<member name="P:ScintillaNET.Properties.Resources.Exception_InvalidStartLine">
<summary>
Looks up a localized string similar to The start line must be greater than or equal to zero..
</summary>
</member>
<member name="P:ScintillaNET.Properties.Resources.Exception_ModuleAlreadyLoaded">
<summary>
Looks up a localized string similar to The module name must be set before any Scintilla object are created..
</summary>
</member>
<member name="P:ScintillaNET.Properties.Resources.Exception_MustBeNonNegativeAndLessThan">
<summary>
Looks up a localized string similar to '{0}' was out of range. Must be non-negative and less than {1}..
</summary>
</member>
<member name="P:ScintillaNET.Properties.Resources.ModuleName">
<summary>
Looks up a localized string similar to SciLexer.dll.
</summary>
</member>
<member name="P:ScintillaNET.Properties.Resources.ModuleName64">
<summary>
Looks up a localized string similar to SciLexer64.dll.
</summary>
</member>
<member name="T:ScintillaNET.Document">
<summary>
Provides an abstraction over Scintilla's Document Pointer
</summary>
</member>
<member name="M:ScintillaNET.Document.AddRef">
<summary>
Increases the document's reference count
</summary>
<remarks>No, you aren't looking at COM, move along.</remarks>
</member>
<member name="M:ScintillaNET.Document.Equals(System.Object)">
<summary>
Overridden.
</summary>
<param name="obj">Another Document Object</param>
<returns>True if both Documents have the same Handle</returns>
</member>
<member name="M:ScintillaNET.Document.GetHashCode">
<summary>
Overridden
</summary>
<returns>Document Pointer's hashcode</returns>
</member>
<member name="M:ScintillaNET.Document.Release">
<summary>
Decreases the document's reference count
</summary>
<remarks>
When the document's reference count reaches 0 Scintilla will destroy the document
</remarks>
</member>
<member name="P:ScintillaNET.Document.Handle">
<summary>
Scintilla's internal document pointer.
</summary>
</member>
<member name="T:ScintillaNET.WhitespaceMode">
<summary>
Specifies the display mode of whitespace characters.
</summary>
</member>
<member name="F:ScintillaNET.WhitespaceMode.Invisible">
<summary>
The normal display mode with whitespace displayed as an empty background color.
</summary>
</member>
<member name="F:ScintillaNET.WhitespaceMode.VisibleAlways">
<summary>
Whitespace characters are drawn as dots and arrows.
</summary>
</member>
<member name="F:ScintillaNET.WhitespaceMode.VisibleAfterIndent">
<summary>
Whitespace used for indentation is displayed normally but after the first visible character, it is shown as dots and arrows.
</summary>
</member>
<member name="M:ScintillaNET.Utilities.ColorToHtml(System.Drawing.Color)">
<summary>
Returns an HTML #XXXXXX format for a color. Unlike the ColorTranslator class it
never returns named colors.
</summary>
</member>
<member name="M:ScintillaNET.Utilities.IntPtrToString(System.Text.Encoding,System.IntPtr,System.Int32)">
<summary>
Marshals an IntPtr pointing to un unmanaged byte[] to a .NET String using the given Encoding.
</summary>
<remarks>
I'd love to have this as en extension method but ScintillaNET's probably going to be 2.0 for a long
time to come. There's nothing really compelling in later versions that applies to ScintillaNET that
can't be done with a 2.0 construct (extension methods, linq, etc)
</remarks>
</member>
<member name="T:ScintillaNET.FoldLevel">
<summary>
The flags that are stored along with the fold level.
</summary>
</member>
<member name="F:ScintillaNET.FoldLevel.Base">
<summary>
The base value for a 0-level fold. The fold level is a number in the range 0 to 4095 (NumberMask).
However, the initial fold level is set to Base(1024) to allow unsigned arithmetic on folding levels.
</summary>
</member>
<member name="F:ScintillaNET.FoldLevel.WhiteFlag">
<summary>
WhiteFlag indicates that the line is blank and allows it to be treated slightly different then its level may
indicate. For example, blank lines should generally not be fold points and will be considered part
of the preceding section even though they may have a lesser fold level.
</summary>
</member>
<member name="F:ScintillaNET.FoldLevel.HeaderFlag">
<summary>
HeaderFlag indicates that the line is a header (fold point).
</summary>
</member>
<member name="F:ScintillaNET.FoldLevel.BoxHeaderFlag">
<summary>
Not documented by current Scintilla docs - associated with the removed Box fold style?
</summary>
</member>
<member name="F:ScintillaNET.FoldLevel.NumberMask">
<summary>
A bit-mask indicating which bits are used to store the actual fold level.
</summary>
</member>
<member name="T:ScintillaNET.Whitespace">
<summary>
Determines how whitespace should be displayed in a <see cref="T:ScintillaNET.Scintilla"/> control.
</summary>
<remarks>
By default, whitespace is determined by the lexer in use. Setting the <see cref="P:ScintillaNET.Whitespace.ForeColor"/>
or <see cref="P:ScintillaNET.Whitespace.BackColor"/> properties overrides the lexer behavior.
</remarks>
</member>
<member name="P:ScintillaNET.Whitespace.BackColor">
<summary>
Gets or sets the whitespace background color.
</summary>
<remarks>
By default, the whitespace background color is determined by the lexer in use.
Setting the <c>BackColor</c> to anything other than <see cref="F:System.Drawing.Color.Empty"/> overrides the lexer behavior.
Transparent colors are not supported.
</remarks>
<returns>
A <see cref="T:System.Drawing.Color"/> that represents the background color of whitespace characters.
The default is <see cref="F:System.Drawing.Color.Empty"/>.
</returns>
<exception cref="!:ArgumentOutOfRange">
The specified <paramref name="value"/> has an alpha value that is less that <see cref="F:System.Byte.MaxValue"/>.
</exception>
</member>
<member name="P:ScintillaNET.Whitespace.ForeColor">
<summary>
Gets or sets the whitespace foreground color.
</summary>
<remarks>
By default, the whitespace foreground color is determined by the lexer in use.
Setting the <c>ForeColor</c> to anything other than <see cref="F:System.Drawing.Color.Empty"/> overrides the lexer behavior.
Transparent colors are not supported.
</remarks>
<returns>
A <see cref="T:System.Drawing.Color"/> that represents the foreground color of whitespace characters.
The default is <see cref="F:System.Drawing.Color.Empty"/>.
</returns>
<exception cref="!:ArgumentOutOfRange">
The specified <paramref name="value"/> has an alpha value that is less that <see cref="F:System.Byte.MaxValue"/>.
</exception>
</member>
<member name="P:ScintillaNET.Whitespace.Mode">
<summary>
Gets or sets the whitespace display mode.
</summary>
<returns>One of the <see cref="T:ScintillaNET.WhitespaceMode"/> values. The default is <see cref="F:ScintillaNET.WhitespaceMode.Invisible"/></returns>
<exception cref="T:System.ComponentModel.InvalidEnumArgumentException">
The specified value is not a valid <see cref="T:ScintillaNET.WhitespaceMode"/> value.
</exception>
</member>
<member name="T:ScintillaNET.UriDroppedEventArgs">
<summary>
Provides data for the UriDropped event
</summary>
</member>
<member name="M:ScintillaNET.UriDroppedEventArgs.#ctor(System.String)">
<summary>
Initializes a new instance of the UriDroppedEventArgs class.
</summary>
<param name="uriText">Text of the dropped file or uri</param>
</member>
<member name="P:ScintillaNET.UriDroppedEventArgs.UriText">
<summary>
Text of the dropped file or uri
</summary>
</member>
<member name="T:ScintillaNET.OverloadList">
<summary>
List of strings to be used with <see cref="T:ScintillaNET.CallTip"/>.
</summary>
</member>
<member name="M:ScintillaNET.OverloadList.#ctor">
<summary>
Creates a new instance of an OverLoadList
</summary>
</member>
<member name="M:ScintillaNET.OverloadList.#ctor(System.Collections.Generic.IEnumerable{System.String})">
<summary>
Creates a new instance of an OverLoadList. The list of overloads is supplied by collection
</summary>
</member>
<member name="M:ScintillaNET.OverloadList.#ctor(System.Int32)">
<summary>
Creates a new instance of an OverLoadList. The
</summary>
</member>
<member name="P:ScintillaNET.OverloadList.Current">
<summary>
Text of the overload to be displayed in the CallTip
</summary>
</member>
<member name="P:ScintillaNET.OverloadList.CurrentIndex">
<summary>
Index of the overload to be displayed in the CallTip
</summary>
</member>
<member name="T:ScintillaNET.LayoutCacheMode">
<summary>
Specifies the line layout caching strategy used by a <see cref="T:ScintillaNET.Scintilla"/> control.
</summary>
</member>
<member name="F:ScintillaNET.LayoutCacheMode.None">
<summary>
No line layout data is cached.
</summary>
</member>
<member name="F:ScintillaNET.LayoutCacheMode.Caret">
<summary>
Line layout data of the current caret line is cached.
</summary>
</member>
<member name="F:ScintillaNET.LayoutCacheMode.Page">
<summary>
Line layout data for all visible lines and the current caret line are cached.
</summary>
</member>
<member name="F:ScintillaNET.LayoutCacheMode.Document">
<summary>
Line layout data for the entire document is cached.
</summary>
</member>
<member name="T:ScintillaNET.StyleCase">
<summary>
Represents casing styles
</summary>
</member>
<member name="F:ScintillaNET.StyleCase.Mixed">
<summary>
Both upper and lower case
</summary>
</member>
<member name="F:ScintillaNET.StyleCase.Upper">
<summary>
Only upper case
</summary>
</member>
<member name="F:ScintillaNET.StyleCase.Lower">
<summary>
Only lower case
</summary>
</member>
<member name="T:ScintillaNET.LinesNeedShownEventArgs">
<summary>
Provides data for the LinesNeedShown event
</summary>
</member>
<member name="M:ScintillaNET.LinesNeedShownEventArgs.#ctor(System.Int32,System.Int32)">
<summary>
Initializes a new instance of the LinesNeedShownEventArgs class.
</summary>
<param name="startLine">the first (top) line that needs to be shown</param>
<param name="endLine">the last (bottom) line that needs to be shown</param>
</member>
<member name="P:ScintillaNET.LinesNeedShownEventArgs.FirstLine">
<summary>
Returns the first (top) line that needs to be shown
</summary>
</member>
<member name="P:ScintillaNET.LinesNeedShownEventArgs.LastLine">
<summary>
Returns the last (bottom) line that needs to be shown
</summary>
</member>
<member name="T:ScintillaNET.Lexer">
<summary>
Built in lexers supported by Scintilla
</summary>
</member>
<member name="F:ScintillaNET.Lexer.Container">
<summary>
No lexing is performed, the Containing application must respond to StyleNeeded events
</summary>
</member>
<member name="F:ScintillaNET.Lexer.Null">
<summary>
No lexing is performed
</summary>
</member>
<member name="F:ScintillaNET.GoToDialog.components">
<summary>
Required designer variable.
</summary>
</member>
<member name="M:ScintillaNET.GoToDialog.Dispose(System.Boolean)">
<summary>
Clean up any resources being used.
</summary>
<param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
</member>
<member name="M:ScintillaNET.GoToDialog.InitializeComponent">
<summary>
Required method for Designer support - do not modify
the contents of this method with the code editor.
</summary>
</member>
<member name="T:ScintillaNET.Clipboard">
<summary>
Provides methods to place data on and retrieve data from the system Clipboard.
</summary>
</member>
<member name="M:ScintillaNET.Clipboard.Copy">
<summary>
Copies the current selection in the document to the Clipboard.
</summary>
</member>
<member name="M:ScintillaNET.Clipboard.Copy(System.Boolean)">
<summary>
Copies the current selection, or the current line if there is no selection, to the Clipboard.
</summary>
<param name="copyLine">
Indicates whether to copy the current line if there is no selection.
</param>
<remarks>
A line copied in this mode is given a "MSDEVLineSelect" marker when added to the Clipboard and
then used in the <see cref="M:ScintillaNET.Clipboard.Paste"/> method to paste the whole line before the current line.
</remarks>
</member>
<member name="M:ScintillaNET.Clipboard.Copy(System.Int32,System.Int32)">
<summary>
Copies the specified range of text (bytes) in the document to the Clipboard.
</summary>
<param name="startPosition">The zero-based byte position to start copying.</param>
<param name="endPosition">The zero-based byte position to stop copying.</param>
</member>
<member name="M:ScintillaNET.Clipboard.Cut">
<summary>
Moves the current document selection to the Clipboard.
</summary>
</member>
<member name="M:ScintillaNET.Clipboard.Paste">
<summary>
Replaces the current document selection with the contents of the Clipboard.
</summary>
</member>
<member name="P:ScintillaNET.Clipboard.CanCopy">
<summary>
Gets a value indicating whether text (bytes) can be copied given the current selection.
</summary>
<returns>true if the text can be copied; otherwise, false.</returns>
<remarks>This is equivalent to determining if there is a valid selection.</remarks>
</member>
<member name="P:ScintillaNET.Clipboard.CanCut">
<summary>
Gets a value indicating whether text (bytes) can be cut given the current selection.
</summary>
<returns>true if the text can be cut; otherwise, false.</returns>
<remarks>This is equivalent to determining if there is a valid selection.</remarks>
</member>
<member name="P:ScintillaNET.Clipboard.CanPaste">
<summary>
Gets a value indicating whether the document can accept text currently stored in the Clipboard.
</summary>
<returns>true if text can be pasted; otherwise, false.</returns>
</member>
<member name="P:ScintillaNET.Clipboard.ConvertLineBreaksOnPaste">
<summary>
Gets or sets whether pasted line break characters are converted to match the document's end-of-line mode.
</summary>
<returns>
true if line break characters are converted; otherwise, false.
The default is true.
</returns>
</member>
<member name="T:ScintillaNET.VOID">
<summary>
Used internally to signify an ignored parameter by overloads of SendMessageDirect
that match the native Scintilla's Message signatures.
</summary>
</member>
<member name="T:ScintillaNET.DropMarker">
<summary>
Represents a DropMarker, currently a single document point.
</summary>
</member>
<member name="T:ScintillaNET.Range">
<summary>
A range within the editor. Start and End are both Positions.
</summary>
</member>
<member name="M:ScintillaNET.Range.CollapseAllFolds">
<summary>
Collapses all folds
</summary>
</member>
<member name="M:ScintillaNET.Range.ExpandAllFolds">
<summary>
Expands all folds
</summary>
</member>
<member name="M:ScintillaNET.Range.StripTrailingSpaces">
<summary>
Removes trailing spaces from each line
</summary>
</member>
<member name="M:ScintillaNET.DropMarker.Change(System.Int32,System.Int32)">
<summary>
Overridden, changes the document position. Start and End should
match.
</summary>
<param name="newStart">Document _start position</param>
<param name="newEnd">Document _end position</param>
</member>
<member name="M:ScintillaNET.DropMarker.Collect">
<summary>
Collects the DropMarker and causes it to be removed from all
lists it belongs ti.
</summary>
</member>
<member name="M:ScintillaNET.DropMarker.Dispose">
<summary>
Overridden.
</summary>
</member>
<member name="M:ScintillaNET.DropMarker.GetClientRectangle">
<summary>
Gets the Client Rectangle in pixels of the DropMarker's visual indicator.
</summary>
</member>
<member name="M:ScintillaNET.DropMarker.Invalidate">
<summary>
Forces a repaint of the DropMarker
</summary>
</member>
<member name="P:ScintillaNET.DropMarker.IsPoint">
<summary>
Overridden. Drop Markers are points, not a spanned range. Though this could change in the future.
</summary>
</member>
<member name="P:ScintillaNET.DropMarker.Key">
<summary>
Uniquely identifies the DropMarker
</summary>
</member>
<member name="P:ScintillaNET.DropMarker.TopOffset">
<summary>
Not currently used, the offset in pixels from the document view's top.
</summary>
</member>
<member name="T:ScintillaNET.Scintilla">
<summary>
Represents a Scintilla text editor control.
</summary>
</member>
<member name="T:ScintillaNET.INativeScintilla">
<summary>
Interface representing the native Scintilla Message Based API. In addition
to wrappers around each of the messages I have included an additional Method
named SendMessageDirect with 9 overloads. This allows you to send messages
to the Scintilla DefWndProc bypassing Windows' SendMessage. Each of the other
methods wrap calls to SendMessageDirect.
Scintilla explicetly implements this interface. To use these methods on
a Scintilla control Cast it as INativeScintilla or use NativeScintilla
property.
The reason for this interface is to keep the "regular" interface surface
area of the Scintilla control as clean and .NETish as possible. Also
this means when you want a direct native interface there's no other
absracted members (Aside from SendMessageDirect ;) cluttering the native
interface.
</summary>
</member>
<member name="M:ScintillaNET.Scintilla.ScintillaNET#INativeScintilla#SendMessageDirect(System.UInt32)">
<summary>
Handles Scintilla Call Style:
(,)
</summary>
<param name="msg">Scintilla Message Number</param>
<returns></returns>
</member>
<member name="M:ScintillaNET.Scintilla.ScintillaNET#INativeScintilla#SendMessageDirect(System.UInt32,System.Int32)">
<summary>
Handles Scintilla Call Style:
(int,)
</summary>
<param name="msg">Scintilla Message Number</param>
<param name="wParam">wParam</param>
<returns></returns>
</member>
<member name="M:ScintillaNET.Scintilla.ScintillaNET#INativeScintilla#SendMessageDirect(System.UInt32,System.Boolean)">
<summary>
Handles Scintilla Call Style:
(bool,)
</summary>
<param name="msg">Scintilla Message Number</param>
<param name="wParam">boolean wParam</param>
<returns></returns>
</member>
<member name="M:ScintillaNET.Scintilla.ScintillaNET#INativeScintilla#SendMessageDirect(System.UInt32,System.String@)">
<summary>
Handles Scintilla Call Style:
(,stringresult)
Notes:
Helper method to wrap all calls to messages that take a char*
in the lParam and returns a regular .NET String. This overload
assumes there will be no wParam and obtains the string _length
by calling the message with a 0 lParam.
</summary>
<param name="msg">Scintilla Message Number</param>
<param name="text">String output</param>
<returns></returns>
</member>
<member name="M:ScintillaNET.Scintilla.ScintillaNET#INativeScintilla#SendMessageDirect(System.UInt32,System.IntPtr,System.IntPtr)">
<summary>
This is the primary Native communication method with Scintilla
used by this control. All the other overloads call into this one.
</summary>
</member>
<member name="M:ScintillaNET.Scintilla.ScintillaNET#INativeScintilla#SendMessageDirect(System.UInt32,System.Int32,System.Int32)">
<summary>
Handles Scintilla Call Style:
(int,int)
</summary>
<param name="msg">Scintilla Message Number</param>
<param name="wParam">wParam</param>
<param name="lParam">lParam</param>
<returns></returns>
</member>
<member name="M:ScintillaNET.Scintilla.ScintillaNET#INativeScintilla#SendMessageDirect(System.UInt32,System.Int32,System.UInt32)">
<summary>
Handles Scintilla Call Style:
(int,uint)
</summary>
<param name="msg">Scintilla Message Number</param>
<param name="wParam">wParam</param>
<param name="lParam">lParam</param>
<returns></returns>
</member>
<member name="M:ScintillaNET.Scintilla.ScintillaNET#INativeScintilla#SendMessageDirect(System.UInt32,ScintillaNET.VOID,System.Int32)">
<summary>
Handles Scintilla Call Style:
(,int)
</summary>
<param name="msg">Scintilla Message Number</param>
<param name="NULL">always pass null--Unused parameter</param>
<param name="lParam">lParam</param>
<returns></returns>
</member>
<member name="M:ScintillaNET.Scintilla.ScintillaNET#INativeScintilla#SendMessageDirect(System.UInt32,System.Boolean,System.Int32)">
<summary>
Handles Scintilla Call Style:
(bool,int)
</summary>
<param name="msg">Scintilla Message Number</param>
<param name="wParam">boolean wParam</param>
<param name="lParam">int lParam</param>
<returns></returns>
</member>
<member name="M:ScintillaNET.Scintilla.ScintillaNET#INativeScintilla#SendMessageDirect(System.UInt32,System.Int32,System.Boolean)">
<summary>
Handles Scintilla Call Style:
(int,bool)
</summary>
<param name="msg">Scintilla Message Number</param>
<param name="wParam">int wParam</param>
<param name="lParam">boolean lParam</param>
<returns></returns>
</member>
<member name="M:ScintillaNET.Scintilla.ScintillaNET#INativeScintilla#SendMessageDirect(System.UInt32,System.Int32,System.String@)">
<summary>
Handles Scintilla Call Style:
(int,stringresult)
Notes:
Helper method to wrap all calls to messages that take a char*
in the lParam and returns a regular .NET String. This overload
assumes there will be no wParam and obtains the string _length
by calling the message with a 0 lParam.
</summary>
<param name="msg">Scintilla Message Number</param>
<param name="text">String output</param>
<returns></returns>
</member>
<member name="M:ScintillaNET.Scintilla.ScintillaNET#INativeScintilla#SendMessageDirect(System.UInt32,System.IntPtr,System.String@,System.Int32)">
<summary>
Handles Scintilla Call Style:
(?)
Notes:
Helper method to wrap all calls to messages that take a char*
in the wParam and set a regular .NET String in the lParam.
Both the _length of the string and an additional wParam are used
so that various string Message styles can be acommodated.
</summary>
<param name="msg">Scintilla Message Number</param>
<param name="wParam">int wParam</param>
<param name="text">String output</param>
<param name="_length">_length of the input buffer</param>
<returns></returns>
</member>
<member name="M:ScintillaNET.Scintilla.ScintillaNET#INativeScintilla#SendMessageDirect(System.UInt32,System.Int32,System.String)">
<summary>
Handles Scintilla Call Style:
(int,string)
Notes:
This helper method handles all messages that take
const char* as an input string in the lParam. In
some messages Scintilla expects a NULL terminated string
and in others it depends on the string _length passed in
as wParam. This method handles both situations and will
NULL terminate the string either way.
</summary>
<param name="msg">Scintilla Message Number</param>
<param name="wParam">int wParam</param>
<param name="lParam">string lParam</param>
<returns></returns>
</member>
<member name="M:ScintillaNET.Scintilla.ScintillaNET#INativeScintilla#SendMessageDirect(System.UInt32,ScintillaNET.VOID,System.String)">
<summary>
Handles Scintilla Call Style:
(,string)
Notes:
This helper method handles all messages that take
const char* as an input string in the lParam. In
some messages Scintilla expects a NULL terminated string
and in others it depends on the string _length passed in
as wParam. This method handles both situations and will
NULL terminate the string either way.
</summary>
<param name="msg">Scintilla Message Number</param>
<param name="NULL">always pass null--Unused parameter</param>
<param name="lParam">string lParam</param>
<returns></returns>
</member>
<member name="M:ScintillaNET.Scintilla.ScintillaNET#INativeScintilla#SendMessageDirect(System.UInt32,System.String,System.String)">
<summary>
Handles Scintilla Call Style:
(string,string)
Notes:
Used by SCI_SETPROPERTY
</summary>
<param name="msg">Scintilla Message Number</param>
<param name="wParam">string wParam</param>
<param name="lParam">string lParam</param>
<returns></returns>
</member>
<member name="M:ScintillaNET.Scintilla.ScintillaNET#INativeScintilla#SendMessageDirect(System.UInt32,System.String,System.String@)">
<summary>
Handles Scintilla Call Style:
(string,stringresult)
Notes:
This one is used specifically by SCI_GETPROPERTY and SCI_GETPROPERTYEXPANDED
so it assumes it's usage
</summary>
<param name="msg">Scintilla Message Number</param>
<param name="wParam">string wParam</param>
<param name="stringResult">Stringresult output</param>
<returns></returns>
</member>
<member name="M:ScintillaNET.Scintilla.ScintillaNET#INativeScintilla#SendMessageDirect(System.UInt32,System.String,System.Int32)">
<summary>
Handles Scintilla Call Style:
(string,int)
</summary>
<param name="msg">Scintilla Message Number</param>
<param name="wParam">string wParam</param>
<param name="lParam">int lParam</param>
<returns></returns>
</member>
<member name="M:ScintillaNET.Scintilla.ScintillaNET#INativeScintilla#SendMessageDirect(System.UInt32,System.String)">
<summary>
Handles Scintilla Call Style:
(string,)
</summary>
<param name="msg">Scintilla Message Number</param>
<param name="wParam">string wParam</param>
<returns></returns>
</member>
<member name="F:ScintillaNET.Scintilla._isBraceMatching">
<summary>
Enables the brace matching from current position.
</summary>
</member>
<member name="M:ScintillaNET.Scintilla.AddLastLineEnd">
<summary>
Adds a line _end marker to the _end of the document
</summary>
</member>
<member name="M:ScintillaNET.Scintilla.AppendText(System.String)">
<summary>
Appends a copy of the specified string to the _end of this instance.
</summary>
<param name="text">The <see cref="T:System.String"/> to append.</param>
<returns>A <see cref="T:ScintillaNET.Range"/> representing the appended text.</returns>
</member>
<member name="M:ScintillaNET.Scintilla.CreateAnnotationsInstance">
<summary>
Creates and returns a new <see cref="T:ScintillaNET.AnnotationCollection"/> object.
</summary>
<returns>A new <see cref="T:ScintillaNET.AnnotationCollection"/> object.</returns>
</member>
<member name="M:ScintillaNET.Scintilla.CreateLineWrappingInstance">
<summary>
Creates and returns a new <see cref="P:ScintillaNET.Scintilla.LineWrapping"/> object.
</summary>
<returns>A new <see cref="P:ScintillaNET.Scintilla.LineWrapping"/> object.</returns>
</member>
<member name="M:ScintillaNET.Scintilla.DirectMessage(System.Int32,System.IntPtr,System.IntPtr)">
<summary>
Sends the specified message directly to the native Scintilla window,
bypassing any managed APIs.
</summary>
<param name="msg">The message ID.</param>
<param name="wParam">The message <c>wparam</c> field.</param>
<param name="lParam">The message <c>lparam</c> field.</param>
<returns>An <see cref="T:System.IntPtr"/> representing the result of the message request.</returns>
<remarks>
Warning: The Surgeon General Has Determined that Calling the Underlying Scintilla
Window Directly May Result in Unexpected Behavior!
</remarks>
<exception cref="T:System.InvalidOperationException">
The method was called from a thread other than the thread it was created on.
</exception>
</member>
<member name="M:ScintillaNET.Scintilla.Dispose(System.Boolean)">
<summary>
Overridden. Releases the unmanaged resources used by the <see cref="T:System.Windows.Forms.Control"/> and
its child controls and optionally releases the managed resources.
</summary>
<param name="disposing"><c>true</c> to release both managed and unmanaged resources; <c>false</c> to release only unmanaged resources.</param>
</member>
<member name="M:ScintillaNET.Scintilla.ExportHtml">
<summary>
Exports a HTML representation of the current document.
</summary>
<returns>A <see cref="T:System.String"/> containing the contents of the document formatted as HTML.</returns>
<remarks>Only ASCII documents are supported. Other encoding types have undefined behavior.</remarks>
</member>
<member name="M:ScintillaNET.Scintilla.ExportHtml(System.IO.TextWriter,System.String,System.Boolean)">
<summary>
Exports a HTML representation of the current document.
</summary>
<param name="writer">The <see cref="T:System.IO.TextWriter"/>with which to write. </param>
<param name="title">The title of the HTML document.</param>
<param name="allStyles">
<c>true</c> to output all styles including those not
used in the document; otherwise, <c>false</c>.
</param>
<remarks>Only ASCII documents are supported. Other encoding types have undefined behavior.</remarks>
</member>
<member name="M:ScintillaNET.Scintilla.GetCurrentLine">
<summary>
Gets the text of the line containing the caret.
</summary>
<returns>A <see cref="T:System.String"/> representing the text of the line containing the caret.</returns>
</member>
<member name="M:ScintillaNET.Scintilla.GetCurrentLine(System.Int32@)">
<summary>
Gets the text of the line containing the caret and the current caret position within that line.
</summary>