GetEffective

LineFormat.GetEffective method

Получает действующие данные форматирования строки с примененным наследованием.

public ILineFormatEffectiveData GetEffective()

Возвращаемое значение

AILLineFormatEffectiveData.

Примеры

Этот пример демонстрирует получение эффективных свойств формата линии формы.

[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);
}

Смотрите также