GetEffective
TextFrameFormat.GetEffective method
Ruft effektive Formatierungsdaten für Textrahmen mit angewendeter Vererbung ab.
public ITextFrameFormatEffectiveData GetEffective()
Rückgabewert
EINITextFrameFormatEffectiveData
.
Beispiele
Dieses Beispiel demonstriert das Abrufen einiger effektiver Formatierungseigenschaften für Textrahmen.
[C#]
using (Presentation pres = new Presentation(@"MyPresentation.pptx"))
{
IAutoShape shape = pres.Slides[0].Shapes[0] as IAutoShape;
ITextFrameFormatEffectiveData effectiveTextFrameFormat = shape.TextFrame.TextFrameFormat.GetEffective();
Console.WriteLine("Anchoring type: " + effectiveTextFrameFormat.AnchoringType);
Console.WriteLine("Autofit type: " + effectiveTextFrameFormat.AutofitType);
Console.WriteLine("Text vertical type: " + effectiveTextFrameFormat.TextVerticalType);
Console.WriteLine("Margins");
Console.WriteLine(" Left: " + effectiveTextFrameFormat.MarginLeft);
Console.WriteLine(" Top: " + effectiveTextFrameFormat.MarginTop);
Console.WriteLine(" Right: " + effectiveTextFrameFormat.MarginRight);
Console.WriteLine(" Bottom: " + effectiveTextFrameFormat.MarginBottom);
}
Siehe auch
- interface ITextFrameFormatEffectiveData
- class TextFrameFormat
- namensraum Aspose.Slides
- Montage Aspose.Slides