幫助和支持中心選項
從下面的選項中選擇來自定義您的幫助和支持中心。
在瀏覽欄中顯示收藏夾 在瀏覽欄中顯示歷史 用於幫助內容的字體大小: 小
中
大 瀏覽欄中的圖標的選項: 顯示所有的文字標籤
只顯示默認的文字標籤
不顯示文字標籤 var g_options = pchealth.UserSettings.Options; function readOptions() { idOPT_fav .checked = g_options.ShowFavorites; idOPT_hist.checked = g_options.ShowHistory; switch(g_options.TextLabels) { case 0: idOPT_text_ALL .checked = true; break; case 1: idOPT_text_SEL .checked = true; break; case 2: idOPT_text_NONE.checked = true; break; } switch(g_options.FontSize) { case 0: idOPT_font_SMALL .checked = true; break; case 1: idOPT_font_MEDIUM.checked = true; break; case 2: idOPT_font_LARGE .checked = true; break; } } function updateOptions() { g_options.ShowFavorites = idOPT_fav .checked; g_options.ShowHistory = idOPT_hist.checked; if(idOPT_text_ALL .checked) g_options.TextLabels = 0; if(idOPT_text_SEL .checked) g_options.TextLabels = 1; if(idOPT_text_NONE.checked) g_options.TextLabels = 2; if(idOPT_font_SMALL .checked) g_options.FontSize = 0; if(idOPT_font_MEDIUM.checked) g_options.FontSize = 1; if(idOPT_font_LARGE .checked) g_options.FontSize = 2; g_options.Apply(); } readOptions();