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,48 @@
# ArrowHeadEnds Enum
**Namespace:** Nodify
**Assembly:** Nodify
**References:** [BaseConnection](Nodify_BaseConnection)
The end at which the arrow head is drawn.
```csharp
public enum ArrowHeadEnds
```
## Fields
### Both
Arrow heads at both ends.
```csharp
Both = 2;
```
### End
Arrow head at end.
```csharp
End = 1;
```
### None
No arrow head.
```csharp
None = 3;
```
### Start
Arrow head at start.
```csharp
Start = 0;
```