Skip to content

Commit 99fa180

Browse files
author
Pavel Kovalenko
committed
Add TextAlign property for NumericSlider control.
1 parent 600181a commit 99fa180

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

src/editors/xrSdkControls/Controls/NumericSlider/NumericSlider.cs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,12 @@ public bool Hexadecimal
5252
set { numSpinner.Hexadecimal = value; }
5353
}
5454

55+
public HorizontalAlignment TextAlign
56+
{
57+
get { return numSpinner.TextAlign; }
58+
set { numSpinner.TextAlign = value; }
59+
}
60+
5561
public int DecimalPlaces
5662
{
5763
get { return numSpinner.DecimalPlaces; }

0 commit comments

Comments
 (0)