Add project files.
This commit is contained in:
40
docs/api/Nodify_HotKeysDisplayMode.md
Normal file
40
docs/api/Nodify_HotKeysDisplayMode.md
Normal file
@@ -0,0 +1,40 @@
|
||||
# HotKeysDisplayMode Enum
|
||||
|
||||
**Namespace:** Nodify
|
||||
|
||||
**Assembly:** Nodify
|
||||
|
||||
**References:** [PendingConnection](Nodify_PendingConnection)
|
||||
|
||||
Specifies how hotkeys are displayed for a pending connection.
|
||||
|
||||
```csharp
|
||||
public enum HotKeysDisplayMode
|
||||
```
|
||||
|
||||
## Fields
|
||||
|
||||
### All
|
||||
|
||||
Display hotkeys for both mouse and keyboard.
|
||||
|
||||
```csharp
|
||||
All = 2;
|
||||
```
|
||||
|
||||
### Keyboard
|
||||
|
||||
Display hotkeys for keyboard only.
|
||||
|
||||
```csharp
|
||||
Keyboard = 1;
|
||||
```
|
||||
|
||||
### None
|
||||
|
||||
No hotkeys will be displayed for the pending connection.
|
||||
|
||||
```csharp
|
||||
None = 0;
|
||||
```
|
||||
|
||||
Reference in New Issue
Block a user