Files
APIVisualExecutor/docs/api/Nodify_Alignment.md
Ankitkumar Satapara 21aaef6776 Add project files.
2026-04-17 22:31:58 +05:30

53 lines
631 B
Markdown

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