Expression.Value Property

Definition

Sets or gets the data for the object.

public:
 property Platform::String ^ Value { Platform::String ^ get(); void set(Platform::String ^ value); };

Property Value

A string representing the value of the object.

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

    EnvDTE.Expression 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);  
}  

Remarks

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

Applies to