Add project files.

This commit is contained in:
Ankitkumar Satapara
2026-04-17 22:31:58 +05:30
commit 21aaef6776
473 changed files with 50152 additions and 0 deletions

View 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;
```