'Declaration
Public Sub Save()
'Usage
Dim instance As KeyboardMapper instance.Save()
public void Save()
'Declaration
Public Sub Save()
'Usage
Dim instance As KeyboardMapper instance.Save()
public void Save()
Exception | Description |
---|---|
System.IO.IOException | An I/O (input/output) error occurred while trying to save the keyboard map. |
System.Security.SecurityException | The caller does not have the required permission to save the keyboard map. |
private IIbmTerminal terminal; private IKeyboardMapper mapper; public void SaveCurrentMap() { if(terminal != null) { mapper = terminal.KeyboardMapper; mapper.Save(); } else Console.Writeline("No terminal exists."); }