Skip to main content
All docs
V26.1
  • SolidFill Class

    A solid fill applied to a shape or slide background.

    Namespace: DevExpress.Docs.Office

    Assembly: DevExpress.Docs.Core.v26.1.dll

    Declaration

    public class SolidFill :
        OutlineFill

    The following members return SolidFill objects:

    Remarks

    The following code snippet applies a solid fill to a slide background:

    using DevExpress.Docs.Office;
    using DevExpress.Drawing;
    using System.Drawing;
    
        Slide slide = new Slide(new SlideLayout(layoutType: SlideLayoutType.Blank, name: "slide"));
        SolidFill fill = new SolidFill(Color.LightCyan);
        slide.Background = new CustomSlideBackground(fill);
    

    For more information on how to customize the slide or shape fill, refer to the following help topics:

    Implements

    Inheritance

    See Also