文字の装飾
Range^ xlRangeC;
Font^ xlFont;

xlRangeC = (Range^)ws->Range["A1","A1"];
xlFont =(Font^)xlRangeC->Font;
xlFont->ColorIndex=int ColorIndex;// 文字色
xlFont->Bold=bool flg;// 太文字(太い:true/通常:false)
xlFont->Italic=bool flg;// 斜体(斜体:true/通常:false)
xlFont->Underline=bool flg;// 下線 (あり:true/なし:false)
xlFont->Strikethrough=bool flg;// 取消線 (あり:true/なし:false)

System::Runtime::InteropServices::Marshal::ReleaseComObject(xlFont);
System::Runtime::InteropServices::Marshal::ReleaseComObject(xlRangeC);

>>カラーインデックス表