在Excel宏中,我试图确定形状的字体颜色是否是“自动”的。
如下图所示,如果ColorIndex是xlColorIndexAutomatic,则字体颜色被确定为“自动”。
但是,当我在Excel颜色面板中将字体颜色设置为黑色(颜色代码:0)时,ColorIndex设置为xlColorIndexAutomatic,因此无法区分黑色和“自动”。
如果有办法区分他们,请告诉我。
If ActiveSheet.Shapes(0).TextFrame.Characters.Font.ColorIndex = xlColorIndexAutomatic Then
'//
End If
我想更改复选框列表中某些“元素”的字体系列,我正在尝试这段代码,但它不起作用:
方法 (atm,我正在更改后面代码中的文本颜色和字体系列,但我想用jQuery实现):
private void bindCheckBoxList()
{
using (SPWeb web = new SPSite(SPContext.Current.Site.Url).OpenWeb())
{
foreach (SPWeb currentWeb in web.Site.AllWebs)