好吧,我一直在尝试在形状中创建一个新的自定义属性,并且我以某种方式进行了管理,但是,当我尝试更改标签的名称时,我只能写数字。你能告诉我如何在 C# 或 VB 中做到这一点,以便我得到提示吗?
我的代码是:
//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
但是,当 Result 方法只接受布尔值作为输入时,我不知道如何在那边写一个字符串......
提前致谢!