Reference for .Net version of SpaceVIL
0.3.5.8
SpaceVIL (Space of Visual Items Layout) is a cross-platform and multilingual framework for creating GUI client applications for .NET Standard, .NET Core and JVM. SpaceVIL is based on OpenGL graphic technology and GLFW. Using this framework in conjunction with .Net Core or with a JVM, you can work and create graphical client applications on Linux, Mac OS X and Windows.
|
An interface that defines items that can receive common keyboard shortcuts (copy, paste, cut and etc.) and describes its attributes. More...
Inherited by SpaceVIL.TextView.
Public Member Functions | |
void | PasteText (string pasteStr) |
Method for pasting text. More... | |
string | GetSelectedText () |
Method for getting selected text. More... | |
string | CutText () |
Method for cutting selected text. More... | |
void | Undo () |
Method for undo last change. More... | |
void | Redo () |
Method for redo last undo action. More... | |
void | SelectAll () |
Method for selecting all text in the item. More... | |
An interface that defines items that can receive common keyboard shortcuts (copy, paste, cut and etc.) and describes its attributes.
string SpaceVIL.Core.ITextShortcuts.CutText | ( | ) |
string SpaceVIL.Core.ITextShortcuts.GetSelectedText | ( | ) |
void SpaceVIL.Core.ITextShortcuts.PasteText | ( | string | pasteStr | ) |
Method for pasting text.
pasteStr | Text for pasting. |
void SpaceVIL.Core.ITextShortcuts.Redo | ( | ) |
Method for redo last undo action.
Implemented in SpaceVIL.TextView.
void SpaceVIL.Core.ITextShortcuts.SelectAll | ( | ) |
Method for selecting all text in the item.
Implemented in SpaceVIL.TextView.
void SpaceVIL.Core.ITextShortcuts.Undo | ( | ) |
Method for undo last change.
Implemented in SpaceVIL.TextView.