I want to use standard line weight 3 insteat of 1 for all new visio drawings How do I go about?
F Flip Apr 21, 2009 #1 I want to use standard line weight 3 insteat of 1 for all new visio drawings How do I go about?
J JuneTheSecond Apr 23, 2009 #2 Hi, You need to run a code when Visio start with add-in or add-on. The basic code is simple. ActiveDocument.GestureFormatSheet.Cells("LineWeight").FormulaU = "0.24 pt" If you run this code in VBA Macro, the default line weight is set to (2) only to the drawing that has this macro. -- Best Regards. JuneTheSecond Now, visual calculation is more visual. http://www.geocities.jp/visualcalculation/english/index.html
Hi, You need to run a code when Visio start with add-in or add-on. The basic code is simple. ActiveDocument.GestureFormatSheet.Cells("LineWeight").FormulaU = "0.24 pt" If you run this code in VBA Macro, the default line weight is set to (2) only to the drawing that has this macro. -- Best Regards. JuneTheSecond Now, visual calculation is more visual. http://www.geocities.jp/visualcalculation/english/index.html