# Adding Curves

## Content

You can add curves to your word document using **Word** component. [DrawArc](/componentone/api/win/online-wordlibrary/dotnet-framework-api/C1.C1Word.4.8/C1.C1Word.C1WordDocument.DrawArc.html) method allows you to add a curve to your document. The implementation of [DrawArc](/componentone/api/win/online-wordlibrary/dotnet-framework-api/C1.C1Word.4.8/C1.C1Word.C1WordDocument.DrawArc.html) method is given in the code below:

```vbnet
rc = New RectangleF(120, 100, 150, 80)
C1Word.DrawArc(Pens.Red, rc, 0, 90)
```

```csharp
rc = new RectangleF(120, 100, 150, 80);
C1Word.DrawArc(Pens.Red, rc, 0, 90);
```

This above code adds a red colors curve to a word document.

The document will look similar to the image below:
![](https://cdn.mescius.io/document-site-files/images/d212fa72-345b-4e6f-8a61-2f65bbaae047/images/adding_curve.png)