GetEffective
TextFrameFormat.GetEffective method
Obtient les données de formatage de cadre de texte efficaces avec l’héritage appliqué.
public ITextFrameFormatEffectiveData GetEffective()
Return_Value
UNITextFrameFormatEffectiveData
.
Exemples
Cet exemple illustre l’obtention de certaines propriétés de formatage de cadre de texte efficaces.
[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);
}
Voir également
- interface ITextFrameFormatEffectiveData
- class TextFrameFormat
- espace de noms Aspose.Slides
- Assemblée Aspose.Slides