Property | Type | Description | |
---|---|---|---|
AutoComplete | System.Collections.Generic | ||
GetLengthEntered | int | ||
GetListString | string | ||
RegisterImage | void | ||
RegisterImage | void | ||
ResetAutoHide | void | ||
ResetAutomaticLengthEntered | void | ||
ResetCancelAtStart | void | ||
ResetDropRestOfWord | void | ||
ResetFillUpCharacters | void | ||
ResetImageSeparator | void | ||
ResetIsCaseSensitive | void | ||
ResetListSeparator | void | ||
ResetMaxHeight | void | ||
ResetMaxWidth | void | ||
ResetSingleLineAccept | void | ||
ResetStopCharacters | void | ||
ShouldSerialize | bool | ||
ShouldSerializeAutoHide | bool | ||
ShouldSerializeAutomaticLengthEntered | bool | ||
ShouldSerializeCancelAtStart | bool | ||
ShouldSerializeDropRestOfWord | bool | ||
ShouldSerializeFillUpCharacters | bool | ||
ShouldSerializeImageSeparator | bool | ||
ShouldSerializeIsCaseSensitive | bool | ||
ShouldSerializeListSeparator | bool | ||
ShouldSerializeMaxHeight | bool | ||
ShouldSerializeMaxWidth | bool | ||
ShouldSerializeSingleLineAccept | bool | ||
ShouldSerializeStopCharacters | bool | ||
Show | void |
Method | Description | |
---|---|---|
Accept ( ) : void |
Accepts the current AutoComplete window entry If the AutoComplete window is open Accept() will close it. This also causes the Scintilla.AutoCompleteAccepted event to fire |
|
Cancel ( ) : void |
Cancels the autocomplete window If the AutoComplete window is displayed calling Cancel() will close the window. |
|
ClearRegisteredImages ( ) : void |
Deletes all registered images.
|
|
RegisterImage ( int type, string xpmImage ) : void |
Registers an _srcTexture with index to be displayed in the AutoComplete window.
|
|
RegisterImages ( IList |
Registers a list of images to be displayed in the AutoComplete window. Indecis are assigned sequentially starting at 0 |
|
RegisterImages ( IList |
Registers a list of images to be displayed in the AutoComplete window. Indecis are assigned sequentially starting at 0 |
|
RegisterImages ( IList |
Registers a list of images to be displayed in the AutoComplete window. Indecis are assigned sequentially starting at 0 |
|
RegisterImages ( |
Registers a list of images to be displayed in the AutoComplete window. Indecis are assigned sequentially starting at 0 |
|
RegisterImages ( |
Registers a list of images to be displayed in the AutoComplete window. Indecis are assigned sequentially starting at 0 |
|
Show ( ) : void |
Shows the autocomplete window. This overload assumes that the List property has been set. The lengthEntered is automatically detected by the editor. |
|
Show ( IEnumerable |
Shows the autocomplete window
|
|
Show ( int lengthEntered ) : void |
Shows the autocomplete window This overload assumes that the List property has been set. |
|
Show ( int lengthEntered, IEnumerable |
Shows the autocomplete window
|
|
Show ( int lengthEntered, string list ) : void |
Shows the autocomplete window.
|
|
Show ( string list ) : void |
Shows the autocomplete window. In this overload the lengthEntered is automatically detected by the editor. |
|
ShowUserList ( int listType, IEnumerable |
Shows a UserList window UserLists are not as powerful as autocomplete but can be assigned to a user defined index. |
|
ShowUserList ( int listType, string list ) : void |
Shows a UserList window UserLists are not as powerful as autocomplete but can be assigned to a user defined index. |
Method | Description | |
---|---|---|
AutoComplete ( Scintilla scintilla ) : System.Collections.Generic | ||
GetLengthEntered ( ) : int | ||
GetListString ( IEnumerable |
||
RegisterImage ( int type, |
Registers an _srcTexture with index to be displayed in the AutoComplete window.
|
|
RegisterImage ( int type, |
Registers an _srcTexture with index to be displayed in the AutoComplete window.
|
|
ResetAutoHide ( ) : void | ||
ResetAutomaticLengthEntered ( ) : void | ||
ResetCancelAtStart ( ) : void | ||
ResetDropRestOfWord ( ) : void | ||
ResetFillUpCharacters ( ) : void | ||
ResetImageSeparator ( ) : void | ||
ResetIsCaseSensitive ( ) : void | ||
ResetListSeparator ( ) : void | ||
ResetMaxHeight ( ) : void | ||
ResetMaxWidth ( ) : void | ||
ResetSingleLineAccept ( ) : void | ||
ResetStopCharacters ( ) : void | ||
ShouldSerialize ( ) : bool | ||
ShouldSerializeAutoHide ( ) : bool | ||
ShouldSerializeAutomaticLengthEntered ( ) : bool | ||
ShouldSerializeCancelAtStart ( ) : bool | ||
ShouldSerializeDropRestOfWord ( ) : bool | ||
ShouldSerializeFillUpCharacters ( ) : bool | ||
ShouldSerializeImageSeparator ( ) : bool | ||
ShouldSerializeIsCaseSensitive ( ) : bool | ||
ShouldSerializeListSeparator ( ) : bool | ||
ShouldSerializeMaxHeight ( ) : bool | ||
ShouldSerializeMaxWidth ( ) : bool | ||
ShouldSerializeSingleLineAccept ( ) : bool | ||
ShouldSerializeStopCharacters ( ) : bool | ||
Show ( int lengthEntered, string list, bool dontSplit ) : void |
public RegisterImage ( int type, string xpmImage ) : void | ||
type | int | Index of the _srcTexture to register to |
xpmImage | string | Image in the XPM _srcTexture format |
return | void |
public RegisterImages ( IList |
||
images | IList |
List of images in the Bitmap _srcTexture format |
return | void |
public RegisterImages ( IList |
||
images | IList |
List of images in the Bitmap _srcTexture format |
transparentColor | Color to mask the _srcTexture as transparent | |
return | void |
public RegisterImages ( IList |
||
xpmImages | IList |
List of images in the XPM _srcTexture format |
return | void |
public RegisterImages ( |
||
images | List of images contained in an ImageList | |
return | void |
public RegisterImages ( |
||
images | List of images contained in an ImageList | |
transparentColor | Color to mask the _srcTexture as transparent | |
return | void |
public Show ( IEnumerable |
||
list | IEnumerable |
/// Sets the |
return | void |
public Show ( int lengthEntered ) : void | ||
lengthEntered | int | Number of characters of the current word already entered in the editor |
return | void |
public Show ( int lengthEntered, IEnumerable |
||
lengthEntered | int | Number of characters of the current word already entered in the editor |
list | IEnumerable |
Sets the |
return | void |
public Show ( int lengthEntered, string list ) : void | ||
lengthEntered | int | Number of characters of the current word already entered in the editor |
list | string | Sets the |
return | void |
public ShowUserList ( int listType, IEnumerable |
||
listType | int | Index of the userlist to show. Can be any integer |
list | IEnumerable |
List of words to show. |
return | void |
public ShowUserList ( int listType, string list ) : void | ||
listType | int | Index of the userlist to show. Can be any integer |
list | string | List of words to show separated by " " |
return | void |