[]
Specifies a preset extrusion (three-dimensional) format.
Use this enumeration to identify one of the built-in 3-D format presets when working with shape or chart three-dimensional formatting.
public enum PresetThreeDFormat
Public Enum PresetThreeDFormat
PresetThreeDFormat format = PresetThreeDFormat.ThreeD5;
if (format == PresetThreeDFormat.ThreeD5)
{
IShape shape = worksheet.Shapes.AddShape(AutoShapeType.Rectangle, 20, 20, 120, 60);
shape.ThreeD.Visible = true;
}
| Name | Description |
|---|---|
| ThreeD1 | Specifies first 3-D format. |
| ThreeD10 | Specifies tenth 3-D format. |
| ThreeD11 | Specifies eleventh 3-D format. |
| ThreeD12 | Specifies twelfth 3-D format. |
| ThreeD13 | Specifies thirteenth 3-D format. |
| ThreeD14 | Specifies fourteenth 3-D format. |
| ThreeD15 | Specifies fifteenth 3-D format. |
| ThreeD16 | Specifies sixteenth 3-D format. |
| ThreeD17 | Specifies seventeenth 3-D format. |
| ThreeD18 | Specifies eighteenth 3-D format. |
| ThreeD19 | Specifies nineteenth 3-D format. |
| ThreeD2 | Specifies second 3-D format. |
| ThreeD20 | Specifies twentieth 3-D format. |
| ThreeD3 | Specifies third 3-D format. |
| ThreeD4 | Specifies fourth 3-D format. |
| ThreeD5 | Specifies fifth 3-D format. |
| ThreeD6 | Specifies sixth 3-D format. |
| ThreeD7 | Specifies seventh 3-D format. |
| ThreeD8 | Specifies eighth 3-D format. |
| ThreeD9 | Specifies ninth 3-D format. |