MFCDialogNumberVariableExtender.MaxValue - свойство
Gets or sets the maximum value for the numeric-type variable represented by the parent object.
Пространство имен: Microsoft.VisualStudio.VCCodeModel
Сборка: Microsoft.VisualStudio.VCCodeModel (в Microsoft.VisualStudio.VCCodeModel.dll)
Синтаксис
'Декларация
Property MaxValue As String
'Применение
Dim instance As MFCDialogNumberVariableExtender
Dim value As String
value = instance.MaxValue
instance.MaxValue = value
string MaxValue { get; set; }
property String^ MaxValue {
String^ get ();
void set (String^ value);
}
function get MaxValue () : String
function set MaxValue (value : String)
Значение свойства
Тип: System.String
A string representing the maximum numeric value.
Примеры
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.
Разрешения
- Полное доверие для непосредственно вызывающего метода. Этот член не может быть использован частично доверенным кодом. Дополнительные сведения см. в разделе Using Libraries from Partially Trusted Code.
См. также
Ссылки
MFCDialogNumberVariableExtender Интерфейс