PanelStyle.Direction 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 direção na qual exibir controles que incluem texto em um controle de painel.
public:
virtual property System::Web::UI::WebControls::ContentDirection Direction { System::Web::UI::WebControls::ContentDirection get(); void set(System::Web::UI::WebControls::ContentDirection value); };
public virtual System.Web.UI.WebControls.ContentDirection Direction { get; set; }
member this.Direction : System.Web.UI.WebControls.ContentDirection with get, set
Public Overridable Property Direction As ContentDirection
Valor da propriedade
Um dos valores de ContentDirection. O padrão é NotSet.
Exceções
A direção não é um dos valores ContentDirection.
Exemplos
O exemplo de código a seguir define as Direction propriedades de dois controles Panel1
de painel e Panel2
o valor da ContentDirection.LeftToRight
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 Direction propriedade especifica a direção na qual exibir controles que incluem texto em um controle de painel.
A Direction propriedade é definida usando um dos ContentDirection valores. A tabela a seguir lista os valores possíveis.
Valor | Descrição |
---|---|
NotSet |
A direção do conteúdo não está definida. |
LeftToRight |
Controles filho que incluem texto são exibidos da esquerda para a direita. |
RightToLeft |
Os controles filho que incluem texto são exibidos da direita para a esquerda. |
Se você especificar LeftToRight, controles filho que incluem a exibição de texto da esquerda para a direita. Se você especificar RightToLeft, controles filho que incluem a exibição de texto da direita para a esquerda. Use RightToLeft para exibir texto para idiomas escritos da direita para a esquerda, como árabe ou hebraico.