- 积分
- 9
- 贡献
-
- 精华
- 在线时间
- 小时
- 注册时间
- 2012-11-13
- 最后登录
- 1970-1-1
|
发表于 2014-8-11 12:00:31
|
显示全部楼层
本帖最后由 了无痕 于 2014-8-11 12:01 编辑
Set Levels = ContourMap.Levels
'You can also change level fill and line properties individually (ie. for the 4th and 8th levels only)
Levels(4).Line.ForeColorRGBA.Color = srfColorMagenta
Levels(4).Line.Width = 0.03
Levels(4).Fill.ForeColorRGBA.Color = srfColorGreen
Levels(8).Line.ForeColorRGBA.Color = srfColorPink
Levels(8).Line.Width = 0.05
Levels(8).Fill.ForeColorRGBA.Color = srfColorYellow
'Use Levels Collection to set the label frequency
Levels.SetLabelFrequency(FirstIndex:=1, NumberToSet:=1, NumberToSkip:=1)对每一个level进行循环,设置一下就可以了
|
|