ThreeDFormat

ITextFrameFormat.ThreeDFormat property

Gibt das ThreeDFormat-Objekt zurück, das 3D-Effekteigenschaften für einen Text darstellt. SchreibgeschütztIThreeDFormat .

public IThreeDFormat ThreeDFormat { get; }

Beispiele

[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";

    // Textumwandlung festlegen
    textFrame.TextFrameFormat.Transform = TextShapeType.ArchUpPour;

    // Extrusion festlegen
    textFrame.TextFrameFormat.ThreeDFormat.ExtrusionColor.Color = Color.Orange;
    textFrame.TextFrameFormat.ThreeDFormat.ExtrusionHeight = 6;

    // Kontur setzen
    textFrame.TextFrameFormat.ThreeDFormat.ContourColor.Color = Color.DarkRed;
    textFrame.TextFrameFormat.ThreeDFormat.ContourWidth = 1.5;

    // Tiefe einstellen
    textFrame.TextFrameFormat.ThreeDFormat.Depth = 3;

    // Material festlegen
    textFrame.TextFrameFormat.ThreeDFormat.Material = MaterialPresetType.Plastic;

    // Beleuchtung einstellen
    textFrame.TextFrameFormat.ThreeDFormat.LightRig.Direction = LightingDirection.Top;
    textFrame.TextFrameFormat.ThreeDFormat.LightRig.LightType = LightRigPresetType.Balanced;
    textFrame.TextFrameFormat.ThreeDFormat.LightRig.SetRotation(0, 0, 40);

    // Kameratyp einstellen
    textFrame.TextFrameFormat.ThreeDFormat.Camera.CameraType = CameraPresetType.PerspectiveContrastingRightFacing;
}

Siehe auch