IsLabelTypeShown
Returns TRUE or FALSE depending on whether the label of the given type is shown or not.
BOOL IsLabelTypeShown( UINT nType, int * pnPos = NULL, BOOL bColHeaders = true )
TRUE if shown, otherwise FALSE.
EX1
// The example returns the information about whether the column labels nType is shown or not. void Worksheet_IsLabelTypeShown_Ex1() { Worksheet wks = Project.ActiveLayer(); if ( !wks ) { out_str("No active worksheet"); return; } for(UINT nType = 0 ; nType < 8 ; nType++ ) { BOOL bShown = wks.IsLabelTypeShown(nType); printf("Type %u shown = %d\n", nType, bShown); } }
Worksheet::IsHeaderShown, Worksheet::IsGridLinesShown
origin.h