PanelStyle.ScrollBars Propriedade
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Obtém ou define a visibilidade e a posição das barras de rolagem em um controle de painel.
public:
virtual property System::Web::UI::WebControls::ScrollBars ScrollBars { System::Web::UI::WebControls::ScrollBars get(); void set(System::Web::UI::WebControls::ScrollBars value); };
public virtual System.Web.UI.WebControls.ScrollBars ScrollBars { get; set; }
member this.ScrollBars : System.Web.UI.WebControls.ScrollBars with get, set
Public Overridable Property ScrollBars As ScrollBars
Valor da propriedade
Um dos valores de ScrollBars. O padrão é None.
Exceções
A propriedade ScrollBars não é um dos valores ScrollBars.
Exemplos
O exemplo de código a seguir define as ScrollBars propriedades de dois controles Panel1
de painel e Panel2
o valor da ScrollBars.Both
enumeração. Este exemplo de código faz parte de um exemplo maior fornecido para a PanelStyle classe.
public partial class PanelStylecs_aspx : Page
{
void Page_Load(object sender, EventArgs e)
{
StateBag panelState = new StateBag();
PanelStyle myPanelStyle = new PanelStyle(panelState);
// Set the properties of the PanelStyle class.
myPanelStyle.HorizontalAlign = HorizontalAlign.Center;
myPanelStyle.ScrollBars = ScrollBars.Both;
myPanelStyle.Wrap = false;
myPanelStyle.Direction = ContentDirection.LeftToRight;
myPanelStyle.BackImageUrl = @"~\images\picture.jpg";
// Use the ApplyStyle method of the Panel control to apply
// the settings from the myPanelStyle object.
Panel1.ApplyStyle(myPanelStyle);
Panel2.ApplyStyle(myPanelStyle);
}
}
Partial Class PanelStylevb_aspx
Inherits Page
Sub Page_Load(ByVal sender As Object, ByVal e As EventArgs)
Dim panelState As StateBag = New StateBag()
Dim myPanelStyle As PanelStyle = New PanelStyle(panelState)
' Set the properties of the PanelStyle class.
myPanelStyle.HorizontalAlign = HorizontalAlign.Center
myPanelStyle.ScrollBars = ScrollBars.Both
myPanelStyle.Wrap = False
myPanelStyle.Direction = ContentDirection.LeftToRight
myPanelStyle.BackImageUrl = "~\images\picture.jpg"
' Use the ApplyStyle method of the Panel control to apply
' the settings from the myPanelStyle object.
Panel1.ApplyStyle(myPanelStyle)
Panel2.ApplyStyle(myPanelStyle)
End Sub
End Class
Comentários
A ScrollBars propriedade especifica a visibilidade e a posição das barras de rolagem em um controle de painel.
A ScrollBars propriedade é definida usando um dos valores de ScrollBars enumeração. A tabela a seguir lista os valores possíveis.
Valor | Descrição |
---|---|
None |
Nenhuma barra de rolagem é mostrada. |
Horizontal |
Somente uma barra de rolagem horizontal é mostrada. |
Vertical |
Somente uma barra de rolagem vertical é mostrada. |
Both |
As barras de rolagem horizontais e verticais são mostradas. |
Auto |
Se necessário, as barras de rolagem horizontal, vertical ou ambas são mostradas. Caso contrário, nenhuma barra de rolagem é mostrada. |