2011-06-11 105 views
1

我使用下面的代碼(在海燕UI它們被命名爲「屬性標籤」)如何改變海燕的大小和顏色「屬性標籤」使用海洋

我一個屬性添加到PolylineSet想改變尺寸和顏色。 有誰知道這是否可以通過海洋?

我想這樣做,因爲這些標籤的大小爲1,顏色爲黑色,對我來說這不是一個好的默認設置。

在此先感謝

回答

1

我還沒有具體改變標籤的顏色和大小,但已經處理的大小和顏色polylinesets。也許你可以使用INumberAnnotation樣式對象?它似乎具有設置字體顏色和大小的屬性。

Slb.Ocean.Petrel.UI.Style.IStyleFactory factory = CoreSystem.GetService<Slb.Ocean.Petrel.UI.Style.IStyleFactory>(ppc); 
Slb.Ocean.Petrel.UI.Style.INumberAnnotation style = (Slb.Ocean.Petrel.UI.Style.INumberAnnotation)factory.GetStyle(ppc, myWindow); 
if (style != null) 
{ 
    style.FontColorType = Slb.Ocean.Petrel.UI.Style.ColorType.White; 
    style.FontSize = 400; 
} 

希望工程。