CodeClass.IsAbstract Özellik
Tanım
Önemli
Bazı bilgiler ürünün ön sürümüyle ilgilidir ve sürüm öncesinde önemli değişiklikler yapılmış olabilir. Burada verilen bilgilerle ilgili olarak Microsoft açık veya zımni hiçbir garanti vermez.
Bir öğenin soyut olarak bildirilip bildirilmemiş olduğunu belirler veya alır.
public:
property bool IsAbstract { bool get(); void set(bool value); };
public:
property bool IsAbstract { bool get(); void set(bool value); };
[System.Runtime.InteropServices.DispId(62)]
public bool IsAbstract { [System.Runtime.InteropServices.DispId(62)] get; [System.Runtime.InteropServices.DispId(62)] set; }
[<System.Runtime.InteropServices.DispId(62)>]
[<get: System.Runtime.InteropServices.DispId(62)>]
[<set: System.Runtime.InteropServices.DispId(62)>]
member this.IsAbstract : bool with get, set
Public Property IsAbstract As Boolean
Özellik Değeri
trueÖğenin soyut olarak bildirilip aşılmadığını belirten bir Boole değeri; false Aksi takdirde.
- Öznitelikler
Örnekler
Sub IsAbstractExample(ByVal dte As DTE2)
' Before running this example, open a code document from a project
' and place the insertion point inside a class definition.
Try
' Retrieve the CodeClass at the insertion point.
Dim sel As TextSelection = _
CType(dte.ActiveDocument.Selection, TextSelection)
Dim cls As CodeClass = _
CType(sel.ActivePoint.CodeElement( _
vsCMElement.vsCMElementClass), CodeClass)
' Display whether the class is abstract.
If cls.IsAbstract Then
MsgBox(cls.Name & " is an abstract class.")
Else
MsgBox(cls.Name & " is not an abstract class.")
End If
Catch ex As Exception
MsgBox(ex.Message)
End Try
End Sub
public void IsAbstractExample(DTE2 dte)
{
// Before running this example, open a code document from a project
// and place the insertion point inside a class definition.
try
{
// Retrieve the CodeClass at the insertion point.
TextSelection sel =
(TextSelection)dte.ActiveDocument.Selection;
CodeClass cls =
(CodeClass)sel.ActivePoint.get_CodeElement(
vsCMElement.vsCMElementClass);
// Display whether the class is abstract.
if (cls.IsAbstract)
MessageBox.Show(cls.Name + " is an abstract class.");
else
MessageBox.Show(cls.Name + " is not an abstract class.");
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
}
}
Açıklamalar
IsAbstract sınıfın şu anda soyut olarak görünüp göründüğünü döndürür veya ayarlar (sınıf soyut olarak bildirilemez, ancak örtük olabilir) veya soyut yöntemler nedeniyle eksik olan yöntem uygulamalarını ekleyen bir alt sınıf gerektiriyor. Bazı diller için bu durum her zaman olabilir False .
Not
Sınıfların, yapıların, işlevlerin, özniteliklerin, temsilcilerin ve bu gibi kod modeli öğelerinin değerleri, belirli tür düzenlemeler yapıldıktan sonra belirleyici olmayan bir değer olabilir, yani değerlerinin her zaman aynı kalır. Daha fazla bilgi için bkz. kod modeli öğe değerleri, kod modeli kullanılarak kod bulma bölümünde değişebilir (Visual Basic).