发布网友 发布时间:2022-04-24 16:12
共1个回答
热心网友 时间:2023-10-21 19:30
设置边框: Borders的LineStyle有8种类型,值分别如下: xlContinuous=1 xlDash=-4115 xlDashDot=4 xlDashDotDot=5 xlDot=-4118 xlDouble=-4119 xlLineStyleNone=-4142 xlSlantDashDot=13 例如: Variant vRange = vExcelApp.OlePropertyGet("ActiveSheet").OlePropertyGet("Cells", 1, 1); Variant vBorder = vRange.OlePropertyGet("Borders"); vBorder.OlePropertySet("LineStyle", 1); // xlContinuous vBorder.OlePropertySet("Weight", 4); // xlThick vBorder.OlePropertySet("ColorIndex", -4105); // xlAutomatic