WidgetUpdateRequestOptions.IsPlaceholderContent Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets a value indicating whether the content of the update is placeholder content.
public:
property IReference<bool> ^ IsPlaceholderContent { IReference<bool> ^ get(); void set(IReference<bool> ^ value); };
IReference<bool> IsPlaceholderContent();
void IsPlaceholderContent(IReference<bool> value);
public System.Nullable<bool> IsPlaceholderContent { get; set; }
var iReference = widgetUpdateRequestOptions.isPlaceholderContent;
widgetUpdateRequestOptions.isPlaceholderContent = iReference;
Public Property IsPlaceholderContent As Nullable(Of Boolean)
Property Value
True if the content of the update is placeholder content. If the value is set to null, the previous value is retained.
Remarks
Widget providers can set this value to true to indicate that the content they are providing is not customized or actionable. For example, a weather widget may supply placeholder content of a weather map for a default location until the user customizes the widget to show the weather map for a particular location. The widget host may use this information to prioritize widgets with custom content over widgets placeholder content.