Bagikan melalui


WebPartZoneBase.BorderWidth Properti

Definisi

Mendapatkan atau mengatur lebar batas yang mengelilingi WebPartZoneBase kontrol.

public:
 virtual property System::Web::UI::WebControls::Unit BorderWidth { System::Web::UI::WebControls::Unit get(); void set(System::Web::UI::WebControls::Unit value); };
public override System.Web.UI.WebControls.Unit BorderWidth { get; set; }
member this.BorderWidth : System.Web.UI.WebControls.Unit with get, set
Public Overrides Property BorderWidth As Unit

Nilai Properti

Lebar dalam batas yang ditentukan Unit yang mengelilingi zona. Defaultnya adalah 1.

Contoh

Contoh kode berikut menunjukkan penggunaan BorderWidth deklaratif properti pada WebPartZone kontrol. Untuk contoh kode lengkap, termasuk file sumber code-behind dan halaman .aspx yang berisi zona dalam kode ini, lihat WebPartZoneBase gambaran umum kelas.

Perhatikan bahwa BorderWidth nilai atribut diatur ke lebar tertentu dalam piksel. Setelah Anda memuat halaman ke browser dan mengalihkan halaman ke mode tampilan desain, Anda dapat melihat efek properti .

<asp:WebPartZone 
  ID="WebPartZone2"
  Runat="server" 
  DragHighlightColor="#00ff00"
  AllowLayoutChange="true"
  EmptyZoneText="Add WebParts to this empty Zone."
  BorderWidth="2"
  BorderColor="DarkBlue"
  BorderStyle="Dashed" 
  MenuLabelText="Verbs Menu" 
  MenuPopupImageUrl="label.gif" >
  <VerbStyle Font-Italic="true" />
  <MenuLabelStyle BackColor="Lime" BorderWidth="1"  />
  <MenuLabelHoverStyle Font-Bold="true" />
  <MenuVerbHoverStyle BackColor="LightGrey" />
  <MenuVerbStyle Font-Italic="true" /> 
  <ZoneTemplate>
    <asp:Label ID="Label1" Runat="server" Title="Date" />
  </ZoneTemplate>
</asp:WebPartZone>
<asp:WebPartZone 
  ID="WebPartZone2"
  Runat="server" 
  DragHighlightColor="#00ff00"
  AllowLayoutChange="true"
  EmptyZoneText="Add WebParts to this empty Zone."
  BorderWidth="2"
  BorderColor="DarkBlue"
  BorderStyle="Dashed" 
  MenuLabelText="Verbs Menu" 
  MenuPopupImageUrl="label.gif" >
  <VerbStyle Font-Italic="true" />
  <MenuLabelStyle BackColor="Lime" BorderWidth="1"  />
  <MenuLabelHoverStyle Font-Bold="true" />
  <MenuVerbHoverStyle BackColor="LightGrey" />
  <MenuVerbStyle Font-Italic="true" /> 
  <ZoneTemplate>
    <asp:Label ID="Label1" Runat="server" Title="Date" />
  </ZoneTemplate>
</asp:WebPartZone>

Keterangan

Properti dasar BorderWidth ditimpa oleh WebPartZoneBase kelas untuk mengatur lebar batas default untuk zona.

Anda dapat mengatur BorderWidth properti untuk WebPartZoneBase kontrol baik secara deklaratif atau terprogram. Batas hanya muncul saat zona berada dalam mode tampilan halaman di mana WebPartZoneBase fitur antarmuka pengguna kelas (UI) terlihat, seperti EditDisplayMode atau DesignDisplayMode.

Berlaku untuk

Lihat juga