CodeFunction.AddParameter 方法
建立新的參數程式碼建構並將程式碼插入正確位置。
命名空間: EnvDTE
組件: EnvDTE (在 EnvDTE.dll 中)
語法
'宣告
Function AddParameter ( _
Name As String, _
Type As Object, _
Position As Object _
) As CodeParameter
CodeParameter AddParameter(
string Name,
Object Type,
Object Position
)
CodeParameter^ AddParameter(
String^ Name,
Object^ Type,
Object^ Position
)
abstract AddParameter :
Name:string *
Type:Object *
Position:Object -> CodeParameter
function AddParameter(
Name : String,
Type : Object,
Position : Object
) : CodeParameter
參數
Name
類型:String必要項。 參數名稱。
Type
類型:Object必要項。 vsCMTypeRef 常數,表示函式所傳回的資料型別。 這可以是 CodeTypeRef 物件、vsCMTypeRef 常數或完整型別名稱。
Position
類型:Object選擇項。 預設値 = 0。 其後要加入新項目的程式碼項目。 如果這個值是 CodeElement,則會緊接在其後加入新項目。
如果這個值是長資料型別,那麼 AddParameter 會指示其後要加入新項目的項目。
由於集合是從 1 開始計算,傳遞 0 表示新的項目必須放在集合起始的位置。 值為 -1 時表示這個項目必須放在結尾。
傳回值
類型:EnvDTE.CodeParameter
CodeParameter 物件。
備註
原生 Visual C++ 的完整型別名稱必須使用冒號 (::) 分隔。 其他所有語言都支援句號 (.) 分隔的格式。
引數的正確性取決於程式碼模型後的程式語言。
注意事項 |
---|
在特定類型的編輯之後,程式碼模型項目 (例如類別、結構、函式、屬性、委派等) 的值可能不具決定性,表示其值不一定維持相同。如需詳細資訊,請參閱使用程式碼模型探索程式碼 (Visual Basic) 的<程式碼模型項目值可以變更>一節。 |
範例
Sub AddParameterExample(ByVal dte As DTE2)
' Before running this example, open a code document from a project
' and place the insertion point inside a function.
Try
' Retrieve the CodeFunction at the insertion point.
Dim sel As TextSelection = _
CType(dte.ActiveDocument.Selection, TextSelection)
Dim fun As CodeFunction = _
CType(sel.ActivePoint.CodeElement( _
vsCMElement.vsCMElementFunction), CodeFunction)
' Add a parameter to the function.
fun.AddParameter("TestParam", vsCMTypeRef.vsCMTypeRefInt)
Catch ex As Exception
MsgBox(ex.Message)
End Try
End Sub
public void AddParameterExample(DTE2 dte)
{
// Before running this example, open a code document from a project
// and place the insertion point inside a function.
try
{
// Retrieve the CodeFunction at the insertion point.
TextSelection sel =
(TextSelection)dte.ActiveDocument.Selection;
CodeFunction fun =
(CodeFunction)sel.ActivePoint.get_CodeElement(
vsCMElement.vsCMElementFunction);
// Add a parameter to the function.
fun.AddParameter("TestParam", vsCMTypeRef.vsCMTypeRefInt, -1);
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
}
}
.NET Framework 安全性
- 完全信任立即呼叫者。這個成員無法供部分信任的程式碼使用。如需詳細資訊,請參閱從部分受信任程式碼使用程式庫。