Add project files.
This commit is contained in:
48
docs/api/Nodify_ArrowHeadEnds.md
Normal file
48
docs/api/Nodify_ArrowHeadEnds.md
Normal 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;
|
||||
```
|
||||
|
||||
Reference in New Issue
Block a user