PanelStyle.Direction Properti
Definisi
Penting
Beberapa informasi terkait produk prarilis yang dapat diubah secara signifikan sebelum dirilis. Microsoft tidak memberikan jaminan, tersirat maupun tersurat, sehubungan dengan informasi yang diberikan di sini.
Mendapatkan atau mengatur arah untuk menampilkan kontrol yang menyertakan teks dalam kontrol panel.
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
Nilai Properti
Salah ContentDirection satu nilai. Defaultnya adalah NotSet.
Pengecualian
Arahnya bukan salah ContentDirection satu nilai.
Contoh
Contoh kode berikut mengatur Direction properti dua kontrol panel, Panel1
dan Panel2
, ke ContentDirection.LeftToRight
nilai enumerasi. Contoh kode ini adalah bagian dari contoh yang lebih besar yang disediakan untuk PanelStyle kelas .
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
Keterangan
Properti Direction menentukan arah untuk menampilkan kontrol yang menyertakan teks dalam kontrol panel.
Properti Direction diatur menggunakan salah ContentDirection satu nilai. Tabel berikut mencantumkan nilai yang mungkin.
Nilai | Deskripsi |
---|---|
NotSet |
Arah konten tidak diatur. |
LeftToRight |
Kontrol anak yang menyertakan teks ditampilkan dari kiri ke kanan. |
RightToLeft |
Kontrol anak yang menyertakan teks ditampilkan dari kanan ke kiri. |
Jika Anda menentukan LeftToRight, kontrol anak yang menyertakan tampilan teks dari kiri ke kanan. Jika Anda menentukan RightToLeft, kontrol anak yang menyertakan tampilan teks kanan ke kiri. Gunakan RightToLeft untuk menampilkan teks untuk bahasa yang ditulis dari kanan ke kiri, seperti Arab atau Ibrani.