我使用下面的代码向 PolylineSet 添加了一个属性(在 Petrel UI 中,它们被命名为“属性标签”)
using (ITransaction trans = DataManager.NewTransaction())
{
trans.Lock(polylineSet);
PolylinePropertyCollection ppc = polylineSet.CreatePropertyCollection();
trans.Lock(ppc);
property = ppc.CreateProperty(PetrelProject.WellKnownTemplates.MiscellaneousGroup.General, name);
trans.Commit();
}
我想改变尺寸和颜色。有谁知道这是否可以通过海洋实现?
我想这样做是因为这些标签的大小为 1,颜色为黑色,这对我来说不是一个好的默认值。
提前致谢