指定された範囲をフォーマットしようとしています。以下のコードのクラスのBorderStyleプロパティには、文字列データ型の値として「xlMedium」がありますが、weightプロパティには定数としてxlMediumが必要です。この文字列値を定数に変換するにはどうすればよいですか?
ありがとうございました。
Function applyFormat(ByRef objRng As clsRange)
' Select the Range
Worksheets(objRng.SheetName).Select
Worksheets(objRng.SheetName).Range(objRng.RangeValue).Select
With Selection.Borders(xlInsideVertical)
.LineStyle = xlContinuous
.ColorIndex = 0
.TintAndShade = 0
.Weight = (Me.BorderStyle)
End With
With Selection.Borders(xlInsideHorizontal)
.LineStyle = xlContinuous
.ColorIndex = 0
.TintAndShade = 0
.Weight = (Me.BorderStyle)
End With
End Function