Animates and draws a line connecting the two points specified by coordinate pairs. 
 Syntax
Syntax
| Visual Basic (Declaration) |  | 
| Public Sub DrawLineA( _
   ByVal pen As Pen, _
   ByVal color As ColorA, _
   ByVal point1 As PointA, _
   ByVal point2 As PointA _
)  | 
 
| Visual Basic (Usage) |  Copy Code | 
| Dim instance As ChartRenderingEngine
Dim pen As Pen
Dim color As ColorA
Dim point1 As PointA
Dim point2 As PointA
 
instance.DrawLineA(pen, color, point1, point2)
 | 
 
Parameters
- pen 
- Graphics pen
- color 
- Animated Color used instead of pen color.
- point1 
- Point structure that represents the first point to connect.
- point2 
- Point structure that represents the second point to connect.
 
 Requirements
Requirements
Target Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, Windows Vista, Windows Server 2008 family
 
 See Also
See Also