-
-
Notifications
You must be signed in to change notification settings - Fork 234
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #185 from miroiu/chore/api-reference
Generate API reference
- Loading branch information
Showing
89 changed files
with
10,348 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
# Alignment Enum | ||
|
||
**Namespace:** Nodify | ||
|
||
**Assembly:** Nodify | ||
|
||
**References:** [EditorCommands](Nodify_EditorCommands), [NodifyEditor](Nodify_NodifyEditor) | ||
|
||
Specifies the possible alignment values used by the NodifyEditor.AlignSelection(Alignment) method. | ||
|
||
```csharp | ||
public enum Alignment | ||
``` | ||
|
||
## Fields | ||
|
||
### Bottom | ||
|
||
```csharp | ||
Bottom = 2; | ||
``` | ||
|
||
### Center | ||
|
||
```csharp | ||
Center = 5; | ||
``` | ||
|
||
### Left | ||
|
||
```csharp | ||
Left = 1; | ||
``` | ||
|
||
### Middle | ||
|
||
```csharp | ||
Middle = 4; | ||
``` | ||
|
||
### Right | ||
|
||
```csharp | ||
Right = 3; | ||
``` | ||
|
||
### Top | ||
|
||
```csharp | ||
Top = 0; | ||
``` | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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; | ||
``` | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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; | ||
``` | ||
|
Oops, something went wrong.