# Setting the Component to the Original Appearance

Learn how to set the appearance of the spreadsheet component to its original default look and manage the renderers for various elements such as column header, row header, scroll bars, and focus indicator.

## Content

You can set the appearance of the spreadsheet component to the original default look. This involves setting the renderers for the overall component, column header, row header, scroll bars, sheet corner, and focus indicator. When no skin is set to the spreadsheet, Excel2016 is used as the default skin for the spreadsheet.
![default appearance of the spreadsheet component](https://cdn.mescius.io/document-site-files/images/2238e618-a1fb-45a6-9ce5-9a4157bd2931/images/spwin-defaultappearance.png)
If Spread Skin is applied to the spreadsheet, the painting logic will be used as before. The default skin will not replace or intercede the old spread skin.
**Example**
This example shows how to set DefaultSkin to the spreadsheet.

```csharp
fpSpread1.Skin = null;
fpSpread1.DefaultSkin = FarPoint.Win.Spread.DefaultSpreadSkins.Office2016Colorful;
```

```csharp
fpSpread1.Skin = Nothing
fpSpread1.DefaultSkin = FarPoInteger.Win.Spread.DefaultSpreadSkins.Office2016Colorful
```

**Example**
This example shows how to set Spread Skin of the spreadsheet.

```csharp
fpSpread1.Skin = FarPoint.Win.Spread.DefaultSpreadSkins.Office2016DarkGray;
```

```vbnet
fpSpread1.Skin = FarPoInteger.Win.Spread.DefaultSpreadSkins.Office2016DarkGray
```

## See Also

[Applying a Skin to the Component](/spreadnet/docs/latest/online-win/overview/spwin-devguide/spwin-setappearance/spwin-appearcontrol/spwin-spreadskinapply)
[Creating a Custom Skin for a Component](/spreadnet/docs/latest/online-win/overview/spwin-devguide/spwin-setappearance/spwin-appearcontrol/spwin-spreadskincreate)
[Applying a Skin to a Sheet](/spreadnet/docs/latest/online-win/overview/spwin-devguide/spwin-setappearance/spwin-appearcontrol/spwin-sheetskinapply)
[Creating a Custom Skin for a Sheet](/spreadnet/docs/latest/online-win/overview/spwin-devguide/spwin-setappearance/spwin-appearcontrol/spwin-sheetskincreate)
[Saving and Loading a Skin](/spreadnet/docs/latest/online-win/overview/spwin-devguide/spwin-setappearance/spwin-appearcontrol/spwin-sheetskinsaveload)