Sdílet prostřednictvím


RadioButtonList.CellPadding Vlastnost

Definice

Získá nebo nastaví vzdálenost (v pixelech) mezi ohraničením a obsahem buňky tabulky.

public:
 virtual property int CellPadding { int get(); void set(int value); };
[System.ComponentModel.Bindable(true)]
public virtual int CellPadding { get; set; }
public virtual int CellPadding { get; set; }
[<System.ComponentModel.Bindable(true)>]
member this.CellPadding : int with get, set
member this.CellPadding : int with get, set
Public Overridable Property CellPadding As Integer

Hodnota vlastnosti

Vzdálenost (v pixelech) mezi ohraničením a obsahem buňky tabulky Výchozí hodnota je -1, což znamená, že tato vlastnost není nastavena.

Atributy

Příklady

Následující příklad kódu ukazuje, jak použít CellPadding vlastnost vložit buňky RadioButtonList ovládacího prvku s 10 pixely.

<%@ Page Language="C#" AutoEventWireup="True" %>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title>RadioButtonList.CellPadding Example</title>
</head>
<body>

<asp:RadioButtonList id="RadioButtonList1"
      CellPadding = "10"
      RepeatLayout="Table" 
      runat="server">
 
    <asp:ListItem>Item 1</asp:ListItem>
    <asp:ListItem>Item 2</asp:ListItem>
    <asp:ListItem>Item 3</asp:ListItem>
    <asp:ListItem>Item 4</asp:ListItem>
    <asp:ListItem>Item 5</asp:ListItem>
    <asp:ListItem>Item 6</asp:ListItem>
 
 </asp:RadioButtonList>
</body>
</html>
<%@ Page Language="VB" AutoEventWireup="True" %>
<html xmlns="http://www.w3.org/1999/xhtml">
<head id="Head1" runat="server">
    <title>RadioButtonList.CellPadding Example</title>
</head>
<body>

<asp:RadioButtonList id="RadioButtonList1"
      CellPadding = "10"
      RepeatLayout="Table" 
      runat="server">
 
    <asp:ListItem>Item 1</asp:ListItem>
    <asp:ListItem>Item 2</asp:ListItem>
    <asp:ListItem>Item 3</asp:ListItem>
    <asp:ListItem>Item 4</asp:ListItem>
    <asp:ListItem>Item 5</asp:ListItem>
    <asp:ListItem>Item 6</asp:ListItem>
 
 </asp:RadioButtonList>
</body>
</html>

Poznámky

Tato vlastnost platí pouze v RepeatLayout případě, že je vlastnost nastavená na RepeatLayout.Tablehodnotu .

Tato vlastnost slouží k řízení mezer mezi obsahem buňky a ohraničením buňky.

Zadané množství odsazení se přidá na všechny čtyři strany buňky. Používá výšku nejvyšší buňky v tabulce a šířku nejširší buňky v tabulce. Výsledná velikost buňky se použije jednotně na všechny buňky v tabulce. Nelze zadat jednotlivé velikosti buněk.

Platí pro

Viz také