Returns 1 if strikeout effect was selected in the last font dialog, 0 otherwise.
Takes no parameters.
Returns the value of global variable requestedFontStrikeout.
BGI GUI
Parameters & Returns
Parameters
This function takes no parameters.
Returns
Int
Quick Summary
Returns 1 if strikeout effect was selected in the last font dialog, 0 otherwise.
Takes no parameters.
Returns the value of global variable requestedFontStrikeout.
Technical Exegesis...
Returns 1 if strikeout effect was selected in the last font dialog, 0 otherwise. Returns the value of global variable requestedFontStrikeout. This value is set by bgiOpenFontDialog() based on LOGFONT.lfStrikeOut (1 if true, 0 if false). Default value is 0.
This function retrieves the strikeout state from the most recently used font dialog. The requestedFontStrikeout global is updated when bgiOpenFontDialog() completes successfully. LOGFONT.lfStrikeOut is a boolean flag (non-zero = strikethrough line).
Returns 1 if strikeout effect was selected in the last font dialog, 0 otherwise. Returns the value of global variable requestedFontStrikeout. This value is set by bgiOpenFontDialog() based on LOGFONT.lfStrikeOut (1 if true, 0 if false). Default value is 0.
This function retrieves the strikeout state from the most recently used font dialog. The requestedFontStrikeout global is updated when bgiOpenFontDialog() completes successfully. LOGFONT.lfStrikeOut is a boolean flag (non-zero = strikethrough line). Font dialog shows strikeout in the Effects section. Use after calling font dialog to determine if strikeout effect was selected.