GetEffective

LineFormat.GetEffective method

Ruft effektive Zeilenformatierungsdaten mit angewendeter Vererbung ab.

public ILineFormatEffectiveData GetEffective()

Rückgabewert

EINILineFormatEffectiveData.

Beispiele

Dieses Beispiel demonstriert das Abrufen der effektiven Linienformateigenschaften der Form.

[C#]
using (Presentation pres = new Presentation(@"MyPresentation.pptx"))
{
	ILineFormatEffectiveData effectiveLineFormat = pres.Slides[0].Shapes[0].LineFormat.GetEffective();

	Console.WriteLine("Style: " + effectiveLineFormat.Style);
	Console.WriteLine("Width: " + effectiveLineFormat.Width);
	Console.WriteLine("Fill type: " + effectiveLineFormat.FillFormat.FillType);
}

Siehe auch