From Attribute

HTML (DHTML)

From Attribute

Internet Development Index

Defines the starting point of a curve. Read/write VgVector2D.

Applies To

Curve

Tag Syntax

<v: element from="expression">

Script Syntax

element.from="expression"

expression=element.from

Remarks

Defines the starting point of a cubic bezier curve in the coordinate space of the parent element.  If the parent is not a VML element, the default unit is a pixel (but in, cm, mm, pt, pc may also be specified). Default is 0,0.

VML Standard Attribute

Example

The curve is smiling. It starts at the left and ends at the right. The two control points are situated along the way so as to pull the curve down to give the appearance of a smile.

   <v:curve id="mycurve"
   from="10pt,10pt" to="100pt,10pt"
   control1="40pt,10pt" control2="70pt,10pt">
   </v:curve>