以下のコードを使用して、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 で、色は黒であり、これは私にとって適切なデフォルトではないため、これを行いたいと考えています。
前もって感謝します