Back to Devexpress

FilledShape.PlaceholderSettings Property

officefileapi-devexpress-dot-docs-dot-presentation-dot-filledshape.md

latest2.4 KB
Original Source

FilledShape.PlaceholderSettings Property

Gets or sets shape placeholder settings.

Namespace : DevExpress.Docs.Presentation

Assembly : DevExpress.Docs.Presentation.v25.2.dll

NuGet Package : DevExpress.Docs.Presentation

Declaration

csharp
public PlaceholderSettings PlaceholderSettings { get; set; }
vb
Public Property PlaceholderSettings As PlaceholderSettings

Property Value

TypeDescription
PlaceholderSettings

Contains shape placeholder settings.

|

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the PlaceholderSettings property.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

presentation-api-extract-content/CS/Program.cs#L75

csharp
#region Filter shapes
if (textShape.PlaceholderSettings?.Type == PlaceholderType.SlideNumber
    || string.IsNullOrWhiteSpace(shapeText)) continue;

presentation-api-extract-content/VB/Program.vb#L62

vb
' #Region "Filter shapes"
                    If textShape.PlaceholderSettings?.Type = PlaceholderType.SlideNumber OrElse String.IsNullOrWhiteSpace(shapeText) Then
                        Continue For

See Also

FilledShape Class

FilledShape Members

DevExpress.Docs.Presentation Namespace