Version

FilePath Property (WebGaugeDeploymentScenario)

Save destination of the image, expressed as a file path, which can be relative to the current page's file path or an absolute path to a folder on the file system. Used when the Mode property is set to FileSystem.
Syntax
'Declaration
 
Public Overridable Property FilePath As String
public virtual string FilePath {get; set;}
Remarks
This property is directly linked to the ImageUrl property. When changing the value, it is usually necessary to change the ImageUrl as well, so these two properties correspond to each other.
Example
Some acceptable values:
FilePath = "GaugeImages" (this would store images in a folder named GaugeImages under the current page's folder).
FilePath = "..\GaugeImages" (this would store images in a folder named GaugeImages, one directory up from the current page's folder).
FilePath = "C:\inetpub\wwwroot\GaugeImages" (this would store images in the folder C:\inetpub\wwwroot\GaugeImages).
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also