TextPane.Width 屬性
取得文字窗格的寬度,以字元為單位。
命名空間: EnvDTE
組件: EnvDTE (在 EnvDTE.dll 中)
語法
'宣告
ReadOnly Property Width As Integer
int Width { get; }
property int Width {
int get ();
}
abstract Width : int
function get Width () : int
屬性值
型別:System.Int32
文字窗格的寬度,以字元為單位。
範例
Sub WidthExample()
Dim objWin As Window
objWin = DTE.Windows.Item(1)
MsgBox("Window width: " & objWin.Width)
End Sub
.NET Framework 安全性
- 完全信任立即呼叫者。這個成員無法供部分信任的程式碼使用。如需詳細資訊,請參閱從部分受信任程式碼使用程式庫。