www.Chart4.NET | Samples

Folder path (relative or absolute) of where the photo files are there in the system. Required, if you set PhotoSpecification as ByFileName and photo files are not in the application's root folder.

Namespace:  UnifoChart.Hierarchy
Assembly:  UnifoChart.Hierarchy (in UnifoChart.Hierarchy.dll) Version: 2.6.0.0 (2.6)

Syntax

C#
public string PhotoPath { get; set; }
Visual Basic (Declaration)
Public Property PhotoPath As String
Visual Basic (Usage)
Dim instance As HierarchyData
Dim value As String

value = instance.PhotoPath

instance.PhotoPath = value
Visual C++
public:
property String^ PhotoPath {
	String^ get ();
	void set (String^ value);
}
J#
/** @property */
public String get_PhotoPath()
/** @property */
public  void set_PhotoPath(String value)
JScript
public function get PhotoPath () : String
public function set PhotoPath (value : String)
JavaScript
function get_PhotoPath();
function set_PhotoPath(value);

Field Value

System.String

Remarks

See also PhotoSpecification. If you havn't specify the PhotoPath, then you have to specify the path (relative or absolute) together with each filename specified in the XML/table/array format (see HierarchyData for the data format).
You can omit the path, if the files are at the same folder as the application's root folder.

See Also