windowsforms-devexpress-dot-xtraeditors-dot-repository-dot-repositoryitemradiogroup-fa19524f.md
Gets or set whether items are aligned at the top edge of the control or justified.
Namespace : DevExpress.XtraEditors.Repository
Assembly : DevExpress.XtraEditors.v25.2.dll
NuGet Package : DevExpress.Win.Navigation
[DefaultValue(RadioItemVertAlignment.Justify)]
[DXCategory("Appearance")]
public RadioItemVertAlignment ItemVertAlignment { get; set; }
<DefaultValue(RadioItemVertAlignment.Justify)>
<DXCategory("Appearance")>
Public Property ItemVertAlignment As RadioItemVertAlignment
| Type | Default | Description |
|---|---|---|
| DevExpress.XtraEditors.RadioItemVertAlignment | Justify |
A DevExpress.XtraEditors.RadioItemVertAlignment enumeration value that specifies whether items are aligned at the top edge of the control or justified.
|
Use the ItemVertAlignment and RepositoryItemRadioGroup.ItemHorzAlignment to specify how radio group items are aligned in the control. Items can be either aligned at the control’s edge or justified.
The following code snippet (auto-collected from DevExpress Examples) contains a reference to the ItemVertAlignment property.
Note
The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.
reporting-winforms-implement-custom-parameter-editor/CS/XtraReport1.cs#L37
radioGroup.Properties.ItemVertAlignment = RadioItemVertAlignment.Top;
radioGroup.MinimumSize = new System.Drawing.Size(0, 100);
reporting-winforms-implement-custom-parameter-editor/VB/XtraReport1.vb#L39
radioGroup.Properties.ItemVertAlignment = RadioItemVertAlignment.Top
radioGroup.MinimumSize = New System.Drawing.Size(0, 100)
See Also
RepositoryItemRadioGroup Class