get_Color()
IInkBrush::get_Color() method
Gets the brush color for a line.
virtual System::Drawing::Color Aspose::Slides::Ink::IInkBrush::get_Color()=0
Remarks
Example:
System::SharedPtr<Presentation> pres = System::MakeObject<Presentation>(u"pres.pptx");
System::SharedPtr<IInk> ink = System::ExplicitCast<IInk>(pres->get_Slide(0)->get_Shape(0));
System::ArrayPtr<System::SharedPtr<IInkTrace>> traces = ink->get_Traces();
System::SharedPtr<IInkBrush> brush = traces[0]->get_Brush();
System::Drawing::Color brushColor = brush->get_Color();
brush->set_Color(System::Drawing::Color::get_Red());
See Also
- Class Color
- Class IInkBrush
- Namespace Aspose::Slides::Ink
- Library Aspose.Slides