Implemented interface member:
property
Orientation
Microsoft.Maui.IScrollView.Orientation
11 references to Orientation
Microsoft.Maui.Controls (8)
ScrollView\ScrollView.cs (8)
65 switch (Orientation) 114 /// <summary>Bindable property for <see cref="Orientation"/>.</summary> 115 public static readonly BindableProperty OrientationProperty = BindableProperty.Create(nameof(Orientation), typeof(ScrollOrientation), typeof(ScrollView), ScrollOrientation.Vertical); 247 if (Orientation == ScrollOrientation.Neither) 258 if (Orientation == ScrollOrientation.Neither) 288 switch (Orientation) 324 switch (Orientation) 440 switch (Orientation)
Microsoft.Maui.Controls.Compatibility (3)
Tizen\Renderers\ScrollViewRenderer.cs (3)
89 Control.ScrollOrientation = (global::Tizen.UIExtensions.Common.ScrollOrientation)Element.Orientation; 120 Control.ScrollTo((float)(Element.Orientation == ScrollOrientation.Horizontal ? region.X : region.Y), e.ShouldAnimate); 131 var orientation = Element.Orientation;