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,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;
```