質問

I'm trying to determine the size of the font of a shape's text. When I use Visio as a user, I can see this value in the Shape sheet (under Character->size) However I'm not able to understand how to access it programatically, for reading.

Which section, Row and Cell indexes should I use? Or maybe use the Characters object of the shape?

役に立ちましたか?

解決

I was successful in obtaining the formula by:

string fontSize = shape.CellsSRC[(short) Visio.VisSectionIndices.visSectionCharacter,
      (short) Visio.VisRowIndices.visRowCharacter,
      (short) Visio.VisCellIndices.visCharacterSize].Formula;

Or by:

string fontSize = shape.CellsSRC[3,0,7].Formula;

Which is practically the same, only not very readable, Or by:

string fontSize = shape.get_Cells("Char.Size").Formula;
ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top