officefileapi-devexpress-dot-docs-dot-presentation-dot-filledshape.md
Gets or sets shape placeholder settings.
Namespace : DevExpress.Docs.Presentation
Assembly : DevExpress.Docs.Presentation.v25.2.dll
NuGet Package : DevExpress.Docs.Presentation
public PlaceholderSettings PlaceholderSettings { get; set; }
Public Property PlaceholderSettings As PlaceholderSettings
| Type | Description |
|---|---|
| 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
#region Filter shapes
if (textShape.PlaceholderSettings?.Type == PlaceholderType.SlideNumber
|| string.IsNullOrWhiteSpace(shapeText)) continue;
presentation-api-extract-content/VB/Program.vb#L62
' #Region "Filter shapes"
If textShape.PlaceholderSettings?.Type = PlaceholderType.SlideNumber OrElse String.IsNullOrWhiteSpace(shapeText) Then
Continue For
See Also