matlab的等高线标高字体颜色,等高线该颜色

这篇博客介绍了如何在MATLAB中修改等高线图的标高字体颜色和等高线颜色。通过使用特定的颜色映射,根据等高线的海拔高度动态调整颜色,实现从一种颜色渐变到另一种颜色的效果。
摘要由CSDN通过智能技术生成

Dim db As Database = HostApplicationServices.WorkingDatabase

Dim ed As Editor = Application.DocumentManager.MdiActiveDocument.Editor

Dim ent As Entity

Dim k As Integer

Dim Doc As Document = Application.DocumentManager.MdiActiveDocument

Using LckDoc As DocumentLock = Doc.LockDocument

Using Trans As Transaction = db.TransactionManager.StartTransaction

Try

'建立DIM图层

Dim Lt As LayerTable = Trans.GetObject(db.LayerTableId, OpenMode.ForRead)

Dim Layname As String = "DIM"

If Lt.Has(Layname) = False Then

Dim Ltr As LayerTableRecord = New LayerTableRecord()

Ltr.Name = Layname

Ltr.Color = Color.FromColorIndex(ColorMethod.ByAci, 3)

Lt.UpgradeOpen() '升级图层块表为写入

Lt.Add(Ltr) '加入到图层块表

Trans.AddNewlyCreatedDBObject(Ltr, True) '加入该事务

End If

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值