Expression2.Value Property

Definition

Sets or gets the data for the object.

public:
 property System::String ^ Value { System::String ^ get(); void set(System::String ^ value); };
public:
 property Platform::String ^ Value { Platform::String ^ get(); void set(Platform::String ^ value); };
[System.Runtime.InteropServices.DispId(102)]
public string Value { [System.Runtime.InteropServices.DispId(102)] get; [System.Runtime.InteropServices.DispId(102)] set; }
[<System.Runtime.InteropServices.DispId(102)>]
[<get: System.Runtime.InteropServices.DispId(102)>]
[<set: System.Runtime.InteropServices.DispId(102)>]
member this.Value : string with get, set
Public Property Value As String

Property Value

A string representing the value of the object.

Implements

Attributes

Examples

The following example demonstrates how to use the Value property.

public static void Value(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("Value property: ");  
    owp.Activate();  

    EnvDTE100.Expression2 exp = dte.Debugger.GetExpression("tempC", true, 1);  
    owp.OutputString("\nThe name of the expression: " + exp.Name);  
    owp.OutputString("\nThe type of the expression: " + exp.Type);  
    owp.OutputString("\nThe value of the expression: " + exp.Value);  
}  
Shared Sub Value(ByRef dte As EnvDTE.DTE)  
    Dim exp As EnvDTE100.Expression2 = dte.Debugger.GetExpression("tempC", True, 1)  
    Dim str As String  
    str = "The name of the expression: " + exp.Name  
    str += vbCrLf + "The type of the expression: " + exp.Type  
    str += vbCrLf + "The value of the expression: " + exp.Value  
    MessageBox.Show(str, "Expression Test - Name, Type, Value Properties")  
End Sub  

Remarks

If an attribute is in the form name(someval, 2), then the value is someval, 2.

Applies to