Skip to content

Commit

Permalink
Merge pull request #185 from miroiu/chore/api-reference
Browse files Browse the repository at this point in the history
Generate API reference
  • Loading branch information
miroiu authored Dec 23, 2024
2 parents ad7a1cd + 63a4769 commit ffef252
Show file tree
Hide file tree
Showing 89 changed files with 10,348 additions and 1 deletion.
2 changes: 1 addition & 1 deletion docs/_Sidebar.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,6 @@
- [Zooming](Minimap-Overview#zooming)
- [Customization](Minimap-Overview#customization)

[API Reference](API-Reference)
[API Reference](api/TOC)

[(FAQ) Frequently asked questions](FAQ)
52 changes: 52 additions & 0 deletions docs/api/Nodify_Alignment.md
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;
```

48 changes: 48 additions & 0 deletions docs/api/Nodify_ArrowHeadEnds.md
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;
```

40 changes: 40 additions & 0 deletions docs/api/Nodify_ArrowHeadShape.md
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;
```

Loading

0 comments on commit ffef252

Please sign in to comment.