MFCDialogNumberVariableExtender.MaxValue Property
Gets or sets the maximum value for the numeric-type variable represented by the parent object.
Namespace: Microsoft.VisualStudio.VCCodeModel
Assembly: Microsoft.VisualStudio.VCCodeModel (in Microsoft.VisualStudio.VCCodeModel.dll)
Syntax
'Declaration
Property MaxValue As String
string MaxValue { get; set; }
property String^ MaxValue {
String^ get ();
void set (String^ value);
}
abstract MaxValue : string with get, set
function get MaxValue () : String
function set MaxValue (value : String)
Property Value
Type: String
A string representing the maximum numeric value.
Examples
This example displays the minimum range of the first dialog box variable, implemented by the CAboutDlg class.
Sub GetRanges()
Dim vcCM as VCCodeModel
Dim vcClass as VCCodeClass
Dim mfcVar as VCCodeVariable
vcCM = DTE.Solution.Item(1).CodeModel
vcClass = vcCM.Classes.Find("CAboutDlg")
vcVar = vcCM.Variables.Item(1)
MsgBox(vcVar.Extender("MFCDialogNumberVariable").MaxValue)
End Sub
See How to: Compile Example Code for Visual C++ Code Model Extensibility for information on how to compile and run this sample.
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.