VCCodeStruct.IsReadOnly - свойство
Gets if the file containing the object is read-only.
Пространство имен: Microsoft.VisualStudio.VCCodeModel
Сборка: Microsoft.VisualStudio.VCCodeModel (в Microsoft.VisualStudio.VCCodeModel.dll)
Синтаксис
'Декларация
ReadOnly Property IsReadOnly As Boolean
'Применение
Dim instance As VCCodeStruct
Dim value As Boolean
value = instance.IsReadOnly
bool IsReadOnly { get; }
property bool IsReadOnly {
bool get ();
}
function get IsReadOnly () : boolean
Значение свойства
Тип: System.Boolean
true if the file containing the object is read-only; otherwise, false.
Заметки
See How to: Compile Example Code for Visual C++ Code Model Extensibility for information on how to compile and run this sample.
Примеры
This example verifies if the file is read-only before adding a comment to the code element.
Sub AddComment()
Dim vcElement As VCCodeElement
Dim vcElements As VCCodeElements
Dim textPoint As TextPoint
vcElements = DTE.Solution.Item(1).CodeModel.Classes
vcElement = vcElements.Item(1)
If (Not vcElement.IsReadOnly) Then
vcElement.Comment = "This is a comment."
End If
End Sub
Разрешения
- Полное доверие для непосредственно вызывающего метода. Этот член не может быть использован частично доверенным кодом. Дополнительные сведения см. в разделе Using Libraries from Partially Trusted Code.