Breakpoint.FunctionColumnOffset Property

Definition

Indicates the column offset from the name of a function breakpoint.

public:
 property int FunctionColumnOffset { int get(); };
public:
 property int FunctionColumnOffset { int get(); };
[System.Runtime.InteropServices.DispId(104)]
public int FunctionColumnOffset { [System.Runtime.InteropServices.DispId(104)] get; }
[<System.Runtime.InteropServices.DispId(104)>]
[<get: System.Runtime.InteropServices.DispId(104)>]
member this.FunctionColumnOffset : int
Public ReadOnly Property FunctionColumnOffset As Integer

Property Value

An integer value representing the column offset from the name of a function breakpoint.

Attributes

Examples

The following example demonstrates how to use the FunctionColumnOffset property.

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();  

    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  

Applies to