This topic has not yet been rated - Rate this topic

StackPanel.CanHorizontallyScroll Property

Gets or sets a value that indicates whether a StackPanel can scroll in the horizontal dimension.

Namespace: System.Windows.Controls
Assembly: PresentationFramework (in presentationframework.dll)
XML Namespace:  http://schemas.microsoft.com/winfx/2006/xaml/presentation

public bool CanHorizontallyScroll { get; set; }
/** @property */
public final boolean get_CanHorizontallyScroll ()

/** @property */
public final void set_CanHorizontallyScroll (boolean value)

public final function get CanHorizontallyScroll () : boolean

public final function set CanHorizontallyScroll (value : boolean)

<object CanHorizontallyScroll="bool" .../>

Property Value

true if content can scroll in the horizontal dimension; otherwise, false.

This property is not intended for use in your code. It is exposed publicly to fulfill an interface contract (IScrollInfo). Setting this property has no effect.

If you require physical scrolling instead of logical scrolling, wrap the StackPanel in a ScrollViewer and set its CanContentScroll property to false.

Windows 98, Windows Server 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition

The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.

.NET Framework

Supported in: 3.0
Did you find this helpful?
(1500 characters remaining)

Community Additions

ADD
© 2013 Microsoft. All rights reserved.