バージョン

ImageURL プロパティ (WebGaugeDeploymentScenario)

画像のURL。現在のページのURLと相対的。Mode プロパティが FileSystem に設定されるときに使用されます。
シンタックス
'宣言
 
Public Overridable Property ImageURL As String
public virtual string ImageURL {get; set;}
解説
このプロパティは、FilePath プロパティに直接リンクされます。この値を変更すると、FilePath も変更することが通常必要です。このためこれら 2 つのプロパティは互いに対応します。このプロパティ値には通常見つかる予約されたトークン (キーワード) があります。これらは役に立ちますが、個々の画像ファイルに名前を指定する必要はありません。置換が可能なトークン: #CLIENT – コンテキスト内の現在の Web コントロール (UltraGauge) の ClientId。#SESSION – 一意のセッション識別子。#EXT – デフォルトのファイル拡張子。ImageType プロパティによって決定されます。
使用例
一部の許容可能な値:
ImageUrl = "GaugeImages/#CLIENT_#SESSION.#EXT" (this would store images in a folder named GaugeImages under the current page's folder).
ImageUrl = "../GaugeImages/#CLIENT_#SESSION.#EXT" (this would store images in a folder named GaugeImages, one directory up from the current page's folder).
ImageUrl = "/GaugeImages/#CLIENT_#SESSION.#EXT" (this would store images in the folder C:\inetpub\wwwroot\GaugeImages).
参照