好吧,我一直試圖在一個形狀中創建一個新的自定義屬性,然後我以某種方式管理,但是,當我嘗試更改標籤的名稱時,我只能寫入數字。你能否告訴我如何在C#或VB中做到這一點,我可以得到一個提示?如何在Visio C#中編寫Shape的屬性?
我的代碼是:
//First I create the row
shape.AddRow((short)VisSectionIndices.visSectionProp,(short) (iRow + 1), (short) VisRowTags.visTagDefault);
//And now I try to write the Label
shape.CellsSRC[(short)VisSectionIndices.visSectionProp, (short)(iRow + 1), (short)VisCellIndices.visCustPropsLabel].Result[VisUnitCodes.visNoCast] = 123456789
然而,當結果方法只接受布爾作爲輸入,我不知道如何寫一個字符串overthere ...提前
謝謝!