Skip to content

Commit 1cd0098

Browse files
m-kovacjozefizso
authored andcommitted
Add Decorative property to Shape
1 parent 53d2598 commit 1cd0098

File tree

1 file changed

+17
-0
lines changed
  • Source/PowerPoint/DispatchInterfaces

1 file changed

+17
-0
lines changed

Source/PowerPoint/DispatchInterfaces/Shape.cs

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -137,6 +137,23 @@ public Int32 Creator
137137
}
138138
}
139139

140+
/// <summary>
141+
/// SupportByVersion PowerPoint 16
142+
/// </summary>
143+
/// <remarks> Docs: <see href="https://docs.microsoft.com/en-us/office/vba/api/PowerPoint.Shape.Decorative"/> </remarks>
144+
[SupportByVersion("PowerPoint", 16)]
145+
public NetOffice.OfficeApi.Enums.MsoTriState Decorative
146+
{
147+
get
148+
{
149+
return Factory.ExecuteEnumPropertyGet<NetOffice.OfficeApi.Enums.MsoTriState>(this, "Decorative");
150+
}
151+
set
152+
{
153+
Factory.ExecuteEnumPropertySet(this, "Decorative", value);
154+
}
155+
}
156+
140157
/// <summary>
141158
/// SupportByVersion PowerPoint 9, 10, 11, 12, 14, 15, 16
142159
/// Get

0 commit comments

Comments
 (0)