dotnetCHARTING Send comments on this topic.
URL Property
See Also  Example
dotnetCHARTING Namespace > Chart Class : URL Property



Gets or sets the URL of the entinre chart image.

Syntax

Visual Basic (Declaration) 
Public Property URL As String
Visual Basic (Usage)Copy Code
Dim instance As Chart
Dim value As String
 
instance.URL = value
 
value = instance.URL
C# 
public string URL {get; set;}
C++/CLI 
public:
property String^ URL {
   String^ get();
   void set (String^ value);
}

Example

C#Copy Code
Chart.URL = "http://www.yahoo.com"; 
Visual BasicCopy Code
Chart.URL = "http://www.yahoo.com"

See Also