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,56 @@
# ConnectionOffsetMode Enum
**Namespace:** Nodify
**Assembly:** Nodify
**References:** [BaseConnection](Nodify_BaseConnection)
Specifies the offset type that can be applied to a [BaseConnection](Nodify_BaseConnection) using the [BaseConnection.SourceOffset](Nodify_BaseConnection#sourceoffset) and the [BaseConnection.TargetOffset](Nodify_BaseConnection#targetoffset) values.
```csharp
public enum ConnectionOffsetMode
```
## Fields
### Circle
The offset is applied in a circle around the point.
```csharp
Circle = 1;
```
### Edge
The offset is applied in a rectangle shape around the point, perpendicular to the edges.
```csharp
Edge = 3;
```
### None
No offset applied.
```csharp
None = 0;
```
### Rectangle
The offset is applied in a rectangle shape around the point.
```csharp
Rectangle = 2;
```
### Static
The offset is applied as a fixed margin.
```csharp
Static = 4;
```