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 @@
# ArrowHeadShape Enum
**Namespace:** Nodify
**Assembly:** Nodify
**References:** [BaseConnection](Nodify_BaseConnection)
The shape of the arrowhead.
```csharp
public enum ArrowHeadShape
```
## Fields
### Arrowhead
The default arrowhead.
```csharp
Arrowhead = 0;
```
### Ellipse
An ellipse.
```csharp
Ellipse = 1;
```
### Rectangle
A rectangle.
```csharp
Rectangle = 2;
```