MESCIUS SPREAD for ASP.NET 10.0J
DisabledImgUrl プロパティ

ボタンが無効の場合にコマンドボタンに表示する画像のURLを 取得または設定します。
構文
'Declaration
 
Public Property DisabledImgUrl As String
public string DisabledImgUrl {get; set;}

プロパティ値

画像のURLを含むString
解説

画像ファイルは、URL パスで定義できる任意の場所に配置できます。

ヒント:プロジェクトに含まれているファイルのみがアプリケーションと共に配置されるため、ボタンの画像ファイルをプロジェクトに追加することをお勧めします。

アクティブ状態のコマンド ボタンに表示する画像を指定するには、EnabledImgUrl プロパティを使用します。

この例では、〈更新〉ボタンが無効の場合に表示する画像を設定します。
private void FpSpread1CreateButton(object sender, FarPoint.Web.Spread.CreateButtonEventArgs e)
{
bool b;
if(e.Command == "Update")
    {
        b = e.Disabled;
        if(b = true)
        {
            e.DisabledImgUrl = "Images/unchecked.gif";
        }
    }
}
Private Sub FpSpread1CreateButton(ByVal sender As Object, ByVal e As FarPoint.Web.Spread.CreateButtonEventArgs) Handles FpSpread1.CreateButton
    Dim b As Boolean
    If e.Command = "Update" Then
        b = e.Disabled
        If b = True Then
            e.DisabledImgUrl = "Images/unchecked.gif"
        End If
    End If
End Sub
参照

CreateButtonEventArgs クラス
CreateButtonEventArgs メンバ
EnabledImgUrl プロパティ

 

 


© MESCIUS inc. All rights reserved.