ThreeDFormat

ITextFrameFormat.ThreeDFormat property

Devuelve el objeto ThreeDFormat que representa las propiedades del efecto 3D de un texto. Solo lecturaIThreeDFormat .

public IThreeDFormat ThreeDFormat { get; }

Ejemplos

[C#]
using (Presentation pres = new Presentation())
{
    IAutoShape autoShape = pres.Slides[0].Shapes.AddAutoShape(ShapeType.Rectangle, 10, 20, 400, 300);

    ITextFrame textFrame = autoShape.TextFrame;

    textFrame.Text = "Aspose.Slide Test Text";

    // Establecer transformación de texto
    textFrame.TextFrameFormat.Transform = TextShapeType.ArchUpPour;

    // Establecer extrusión
    textFrame.TextFrameFormat.ThreeDFormat.ExtrusionColor.Color = Color.Orange;
    textFrame.TextFrameFormat.ThreeDFormat.ExtrusionHeight = 6;

    // Establecer contorno
    textFrame.TextFrameFormat.ThreeDFormat.ContourColor.Color = Color.DarkRed;
    textFrame.TextFrameFormat.ThreeDFormat.ContourWidth = 1.5;

    // Establecer profundidad
    textFrame.TextFrameFormat.ThreeDFormat.Depth = 3;

    // Establecer material
    textFrame.TextFrameFormat.ThreeDFormat.Material = MaterialPresetType.Plastic;

    // Establecer iluminación
    textFrame.TextFrameFormat.ThreeDFormat.LightRig.Direction = LightingDirection.Top;
    textFrame.TextFrameFormat.ThreeDFormat.LightRig.LightType = LightRigPresetType.Balanced;
    textFrame.TextFrameFormat.ThreeDFormat.LightRig.SetRotation(0, 0, 40);

    // Establecer tipo de cámara
    textFrame.TextFrameFormat.ThreeDFormat.Camera.CameraType = CameraPresetType.PerspectiveContrastingRightFacing;
}

Ver también