HorizontalLine

<< Click to Display Table of Contents >>

Navigation:  »No topics above this level«

HorizontalLine

Return to chapter overview

Definition

Represents an interface that exposes information regarding a Horizontal Line IDrawingTool.

 

Methods and Properties

StartAnchor

An IDrawingTool's ChartAnchor representing the starting point of the drawing object

Stroke

A Stroke object used to draw the object

 

 

Example

ns

// Instantiate a HorizontalLine object
HorizontalLine myLine = Draw.HorizontalLine(this, "tag1", 1000, Brushes.Black);
 
// Set a new Stroke for the object
myLine.Stroke = new Stroke(Brushes.Green, DashStyleHelper.Dash, 5);