# Show/Hide Timer Window Border

GrammarshowHide border for window|Timer Window
FlagsNative | Action

Shows or hides the border image for a timer window.

# Arguments

Returns — void

native void TimerWindowShowBorder(
	int inWindow,
	bool inShow,
);

Category: Timer / Timer Windows

# Examples

# campaigns/swarmstory.sc2campaign

SwarmCampaignLib.galaxy

// L2607
TimerWindowShowBorder(TimerWindowLastCreated(), false)

# campaigns/voidstory.sc2campaign

VoidCampaignUILib.galaxy

// L5227
TimerWindowShowBorder(TimerWindowLastCreated(), true)

# mods/missionpacks/novacampaign.sc2mod

LibNCUI.galaxy

// L3678
TimerWindowShowBorder(TimerWindowLastCreated(), true)

# mods/starcoop/starcoop.sc2mod

LibCOUI.galaxy

// L5104
TimerWindowShowBorder(TimerWindowLastCreated(), true)

# mods/voidprologue.sc2mod

LibA3DDD02B.galaxy

// L1601
TimerWindowShowBorder(TimerWindowLastCreated(), false)