ThreeDFormat
Содержание
[
Скрывать
]ThreeDFormat класс
Представляет свойства 3-D.
public sealed class ThreeDFormat : PVIObject, IThreeDFormat
Свойства
Имя | Описание |
---|---|
AsIPresentationComponent { get; } | Позволяет получить базовый интерфейс IPresentationComponent. Только для чтения IPresentationComponent . |
BevelBottom { get; } | Возвращает или устанавливает тип нижнего 3D-скоса. Только для чтения IShapeBevel . |
BevelTop { get; } | Возвращает или устанавливает тип верхнего 3D-скоса. Только для чтения IShapeBevel . |
Camera { get; } | Возвращает или устанавливает настройки камеры. Только для чтения ICamera . |
ContourColor { get; } | Возвращает или устанавливает цвет контура. Только для чтения IColorFormat . |
ContourWidth { get; set; } | Возвращает или устанавливает ширину 3D-контура. Чтение/запись Double. |
Depth { get; set; } | Возвращает или устанавливает глубину 3D-формы. Чтение/запись Double. |
ExtrusionColor { get; } | Возвращает или устанавливает цвет экструзии. Только для чтения IColorFormat . |
ExtrusionHeight { get; set; } | Возвращает или устанавливает высоту эффекта экструзии. Чтение/запись Double. |
LightRig { get; } | Возвращает или устанавливает тип света. Только для чтения ILightRig . |
Material { get; set; } | Возвращает или устанавливает тип материала. Чтение/запись MaterialPresetType . |
Методы
Имя | Описание |
---|---|
override Equals(object) | Сравнивает с указанным объектом. |
GetEffective() | Получает эффективные данные 3-D форматирования с применением наследования. |
override GetHashCode() | Возвращает код хеширования. |
Примеры
Следующий пример показывает, как добавить 3D-форму в презентацию PowerPoint.
[C#]
// Создать экземпляр класса Presentation.
using (Presentation pres = new Presentation())
{
// Добавьте форму, используя метод AddAutoShape
IAutoShape shape = pres.Slides[0].Shapes.AddAutoShape(ShapeType.Rectangle, 200, 150, 200, 200);
// Определите TextFrame и его свойства
shape.TextFrame.Text = "3D";
shape.TextFrame.Paragraphs[0].ParagraphFormat.DefaultPortionFormat.FontHeight = 64;
// Определите свойства ThreeDFormat
shape.ThreeDFormat.Camera.CameraType = CameraPresetType.OrthographicFront;
shape.ThreeDFormat.Camera.SetRotation(20, 30, 40);
shape.ThreeDFormat.LightRig.LightType = LightRigPresetType.Flat;
shape.ThreeDFormat.LightRig.Direction = LightingDirection.Top;
shape.ThreeDFormat.Material = MaterialPresetType.Flat;
shape.ThreeDFormat.ExtrusionHeight = 100;
shape.ThreeDFormat.ExtrusionColor.Color = Color.Blue;
pres.Slides[0].GetThumbnail(2, 2).Save("sample_3d.png");
// Сохраните файл презентации
pres.Save("sandbox_3d.pptx", SaveFormat.Pptx);
}
Следующий пример показывает, как применить градиентный эффект к 3D-форме в презентации PowerPoint.
[C#]
// Создать экземпляр класса Presentation.
using (Presentation pres = new Presentation())
{
// Добавьте форму, используя метод AddAutoShape
IAutoShape shape = pres.Slides[0].Shapes.AddAutoShape(ShapeType.Rectangle, 200, 150, 250, 250);
// Определите TextFrame и его свойства
shape.TextFrame.Text = "3D Gradient";
shape.TextFrame.Paragraphs[0].ParagraphFormat.DefaultPortionFormat.FontHeight = 64;
// Настройте FillFormat.FillType как FillType.Gradient и определите свойства градиента
shape.FillFormat.FillType = FillType.Gradient;
shape.FillFormat.GradientFormat.GradientStops.Add(0, Color.Blue);
shape.FillFormat.GradientFormat.GradientStops.Add(100, Color.Orange);
// Определите свойства ThreeDFormat
shape.ThreeDFormat.Camera.CameraType = CameraPresetType.OrthographicFront;
shape.ThreeDFormat.Camera.SetRotation(20, 30, 40);
shape.ThreeDFormat.LightRig.LightType = LightRigPresetType.Flat;
shape.ThreeDFormat.LightRig.Direction = LightingDirection.Top;
shape.ThreeDFormat.Material = MaterialPresetType.Flat;
shape.ThreeDFormat.ExtrusionHeight = 100;
shape.ThreeDFormat.ExtrusionColor.Color = Color.Blue;
pres.Slides[0].GetThumbnail(2, 2).Save("sample_3d.png");
// Сохраните файл презентации
pres.Save("sandbox_3d.pptx", SaveFormat.Pptx);
}
Следующий пример показывает, как применить 3D-эффект к тексту. Для создания 3D текста можно использовать эффект трансформации WordArt.
[C#]
// Создать экземпляр класса Presentation.
using (Presentation pres = new Presentation())
{
// Добавьте форму, используя метод AddAutoShape
IAutoShape shape = pres.Slides[0].Shapes.AddAutoShape(ShapeType.Rectangle, 200, 150, 250, 250);
// Определите TextFrame и его свойства
shape.TextFrame.Text = "3D Text";
// Настройте FillFormat.FillType как FillType.NoFill
shape.FillFormat.FillType = FillType.NoFill;
shape.LineFormat.FillFormat.FillType = FillType.NoFill;
// Настройте Portion TextFrame и настройте свойства PortionFormat
Portion portion = (Portion)shape.TextFrame.Paragraphs[0].Portions[0];
portion.PortionFormat.FillFormat.FillType = FillType.Pattern;
portion.PortionFormat.FillFormat.PatternFormat.ForeColor.Color = Color.DarkOrange;
portion.PortionFormat.FillFormat.PatternFormat.BackColor.Color = Color.White;
portion.PortionFormat.FillFormat.PatternFormat.PatternStyle = PatternStyle.LargeGrid;
shape.TextFrame.Paragraphs[0].ParagraphFormat.DefaultPortionFormat.FontHeight = 128;
ITextFrame textFrame = shape.TextFrame;
// настройка эффекта трансформации "Arch Up"
textFrame.TextFrameFormat.Transform = TextShapeType.ArchUp;
// Определите свойства ThreeDFormat для ITextFrame
textFrame.TextFrameFormat.ThreeDFormat.ExtrusionHeight = 3.5f;
textFrame.TextFrameFormat.ThreeDFormat.Depth = 3;
textFrame.TextFrameFormat.ThreeDFormat.Material = MaterialPresetType.Plastic;
textFrame.TextFrameFormat.ThreeDFormat.LightRig.Direction = LightingDirection.Top;
textFrame.TextFrameFormat.ThreeDFormat.LightRig.LightType = LightRigPresetType.Balanced;
textFrame.TextFrameFormat.ThreeDFormat.LightRig.SetRotation(0, 0, 40);
textFrame.TextFrameFormat.ThreeDFormat.Camera.CameraType = CameraPresetType.PerspectiveContrastingRightFacing;
pres.Slides[0].GetThumbnail(2, 2).Save("text3d.png");
// Сохраните файл презентации
pres.Save("text3d.pptx", SaveFormat.Pptx);
}
Смотрите также
- класс PVIObject
- интерфейс IThreeDFormat
- пространство имен Aspose.Slides
- сборка Aspose.Slides