Table.BackImageUrl Propriedade

Definição

Obtém ou define a URL da imagem de tela de fundo a ser exibida atrás do controle Table.Gets or sets the URL of the background image to display behind the Table control.

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

Valor da propriedade

String

A URL da imagem de plano de fundo do Table controle.The URL of the background image for the Table control. O valor padrão é Empty.The default value is Empty.

Atributos

Comentários

Use a BackImageUrl propriedade para especificar o local de uma imagem a ser exibida no plano de fundo do Table controle.Use the BackImageUrl property to specify the location of an image to display in the background of the Table control. Você pode usar uma URL relativa ou absoluta.You can use a relative or an absolute URL. Uma URL relativa relaciona o local da imagem ao local da página da Web ou controle de usuário sem especificar um caminho completo no servidor.A relative URL relates the location of the image to the location of the Web page or user control without specifying a complete path on the server. O caminho é relativo ao local da página da Web.The path is relative to the location of the Web page. Isso facilita a movimentação de todo o site para outro diretório no servidor sem Atualizar o caminho para a imagem no código.This makes it easier to move the entire site to another directory on the server without updating the path to the image in code. Uma URL absoluta fornece o caminho completo, portanto, mover o site para outro diretório requer a atualização do código.An absolute URL provides the complete path, so moving the site to another directory requires updating the code.

Observação

Se a imagem for menor do que o Table controle, ela será colocada em lado.If the image is smaller than the Table control, it will be tiled.

Aplica-se a