Breakpoint.FunctionColumnOffset 属性
指示距函数断点名称的列偏移量。
命名空间: EnvDTE
程序集: EnvDTE(在 EnvDTE.dll 中)
语法
声明
ReadOnly Property FunctionColumnOffset As Integer
Get
int FunctionColumnOffset { get; }
property int FunctionColumnOffset {
int get ();
}
abstract FunctionColumnOffset : int
function get FunctionColumnOffset () : int
属性值
类型:System.Int32
一个整数值,表示距函数断点名称的列偏移量。
示例
下面的示例演示如何使用 FunctionColumnOffset 属性。
测试此属性:
在目标应用程序中设置一个断点。
运行外接程序。
public static void FunctionColumnOffset(DTE dte)
{
// Setup debug Output window.
Window w = (Window)dte.Windows.Item(EnvDTE.Constants.vsWindowKindOutput);
w.Visible = true;
OutputWindow ow = (OutputWindow)w.Object;
OutputWindowPane owp = ow.OutputWindowPanes.Add("FunctionColumnOffset Property Test: ");
owp.Activate();
// dte is a reference to the DTE object passed to you by the
// OnConnection method that you implement when you create an add-in.
EnvDTE.Debugger debugger = (EnvDTE.Debugger)dte.Debugger;
owp.OutputString("\n FunctionColumnOffset: " +
debugger.Breakpoints.Item(1).FunctionColumnOffset.ToString());
owp.OutputString("\n FunctionLineOffset: " +
debugger.Breakpoints.Item(1).FunctionLineOffset.ToString());
}
Shared Sub FunctionColumnOffset(ByRef dte As EnvDTE.DTE)
MessageBox.Show("FunctionColumnOffset: " + _
dte.Debugger.Breakpoints.Item(1).FunctionColumnOffset.ToString())
MessageBox.Show("FunctionLineOffset: " + _
dte.Debugger.Breakpoints.Item(1).FunctionLineOffset.ToString())
End Sub
.NET Framework 安全性
- 对直接调用方的完全信任。此成员不能由部分信任的代码使用。有关更多信息,请参见通过部分受信任的代码使用库。