-2
我遇到了下面第二行的問題。我如何使用PowerShell來對齊形狀文本?使用Powershell將Visio形狀文本對齊到頂部和左側
$squareshape.text = "abc";
$squareshape.align.top;
我遇到了下面第二行的問題。我如何使用PowerShell來對齊形狀文本?使用Powershell將Visio形狀文本對齊到頂部和左側
$squareshape.text = "abc";
$squareshape.align.top;
試試這個代碼
$ squareshape.cells( 'VerticalAlign')= 0
$ squareshape.cells( 'Para.HorzAlign')= 0
謝謝!代碼起作用。 – CJP
是有使用PowerShell的理由嗎? – y4cine
請閱讀[如何提出一個好問題](http://stackoverflow.com/help/how-to-ask)。 – mklement0