# Set Height For Timer Window

Grammar — Set window|Timer Window height to height
FlagsNative | Action

Sets the total height of the timer window. Use zero to reset to the default height.

# Arguments

  • int [ preset::TimerWindow ] — Window
  • int — Height

Returns — void

native void TimerWindowSetFixedHeight(
	int inWindow,
	int inHeight,
);

Category: Timer / Timer Windows

# Examples

# campaigns/swarmstory.sc2campaign

SwarmCampaignLib.galaxy

// L2612
TimerWindowSetFixedHeight(TimerWindowLastCreated(), 59)

# campaigns/voidstory.sc2campaign

VoidCampaignUILib.galaxy

// L5233
TimerWindowSetFixedHeight(TimerWindowLastCreated(), 80)

# mods/missionpacks/novacampaign.sc2mod

LibNCUI.galaxy

// L3684
TimerWindowSetFixedHeight(TimerWindowLastCreated(), 80)

# mods/starcoop/starcoop.sc2mod

LibCOUI.galaxy

// L5110
TimerWindowSetFixedHeight(TimerWindowLastCreated(), 80)

# mods/voidprologue.sc2mod

LibA3DDD02B.galaxy

// L1606
TimerWindowSetFixedHeight(TimerWindowLastCreated(), 59)