CodeProperty.Getter プロパティ
プロパティを返すコードを定義するオブジェクトを設定または取得します。
名前空間: EnvDTE
アセンブリ: EnvDTE (EnvDTE.dll 内)
構文
'宣言
Property Getter As CodeFunction
Get
Set
CodeFunction Getter { get; set; }
property CodeFunction^ Getter {
CodeFunction^ get ();
void set (CodeFunction^ value);
}
abstract Getter : CodeFunction with get, set
function get Getter () : CodeFunction
function set Getter (value : CodeFunction)
プロパティ値
型: EnvDTE.CodeFunction
CodeFunction オブジェクト。
解説
Getter は、このプロパティの取得関数であるコード関数がある場合にその関数を返します。
注意
Visual Basic のソース コードのコード要素に対しては、このプロパティは読み取り専用です。
また、特定の種類の編集を行うと、クラス、構造体、関数、属性、デリゲートなどのコード モデル要素が非確定的な値になる場合があります。つまり、これらの要素の値は、常に同じ値になるとは限りません。 詳細については、「コード モデルを使用したコードの調査 (Visual Basic)」で、コード モデル要素値を変更する方法についての説明を参照してください。
例
Sub GetterExample(ByVal dte As DTE2)
' Before running this example, open a code document from a project
' and place the insertion point inside a property definition.
Try
' Retrieve the CodeProperty at the insertion point.
Dim sel As TextSelection = _
CType(dte.ActiveDocument.Selection, TextSelection)
Dim prop As CodeProperty = _
CType(sel.ActivePoint.CodeElement( _
vsCMElement.vsCMElementProperty), CodeProperty)
' Display the source code for the property getter.
Dim gttr As CodeFunction = prop.Getter
Dim start As TextPoint = gttr.GetStartPoint()
Dim finish As TextPoint = gttr.GetEndPoint()
Dim src As String = start.CreateEditPoint().GetText(finish)
MsgBox(prop.Name & "'s getter source code:" & vbCrLf & _
vbCrLf & src)
Catch ex As Exception
MsgBox(ex.Message)
End Try
End Sub
public void GetterExample(DTE2 dte)
{
// Before running this example, open a code document from a project
// and place the insertion point inside a property definition.
try
{
// Retrieve the CodeProperty at the insertion point.
TextSelection sel =
(TextSelection)dte.ActiveDocument.Selection;
CodeProperty prop =
(CodeProperty)sel.ActivePoint.get_CodeElement(
vsCMElement.vsCMElementProperty);
// Display the source code for the property getter.
CodeFunction getter = prop.Getter;
TextPoint start = getter.GetStartPoint(vsCMPart.vsCMPartWhole);
TextPoint finish = getter.GetEndPoint(vsCMPart.vsCMPartWhole);
string src = start.CreateEditPoint().GetText(finish);
MessageBox.Show(prop.Name + "'s getter source code:\n\n" +
src);
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
}
}
.NET Framework セキュリティ
- 直前の呼び出し元に対する完全な信頼。 このメンバーは、部分的に信頼されているコードから使用することはできません。 詳細については、「部分信頼コードからのライブラリの使用」を参照してください。