SecondaryTile.LockScreenDisplayBadgeAndTileText 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 whether the secondary tile is eligible to display both a badge and a detailed tile on the lock screen. If you set this property to True, you must also provide a badge image through the LockScreenBadgeLogo property. If you do not want to use the detailed tile capability, provide a badge image through the LockScreenBadgeLogo property and set LockScreenDisplayBadgeAndTileText to False.
Note
Stating that your secondary tile is eligible for a lock screen presence does not guarantee that it will have one. Only the user can add an app to one of the seven lock screen slots, as well as choosing which one of them can display detailed tile information. For more information, see the Lock screen overview.
public:
property bool LockScreenDisplayBadgeAndTileText { bool get(); void set(bool value); };
bool LockScreenDisplayBadgeAndTileText();
void LockScreenDisplayBadgeAndTileText(bool value);
public bool LockScreenDisplayBadgeAndTileText { get; set; }
var boolean = secondaryTile.lockScreenDisplayBadgeAndTileText;
secondaryTile.lockScreenDisplayBadgeAndTileText = boolean;
Public Property LockScreenDisplayBadgeAndTileText As Boolean
Property Value
bool
True if the secondary tile can have a lock screen presence; otherwise, False.