ValidatorCollection.CopyTo メソッド
検証コントロールのコレクションを、指定した配列の指定した位置から始まる範囲にコピーします。
名前空間: System.Web.UI
アセンブリ: System.Web (system.web.dll 内)
構文
'宣言
Public Sub CopyTo ( _
array As Array, _
index As Integer _
)
'使用
Dim instance As ValidatorCollection
Dim array As Array
Dim index As Integer
instance.CopyTo(array, index)
public void CopyTo (
Array array,
int index
)
public:
virtual void CopyTo (
Array^ array,
int index
) sealed
public final void CopyTo (
Array array,
int index
)
public final function CopyTo (
array : Array,
index : int
)
適用できません。
パラメータ
- array
検証サーバー コントロールを追加するコレクション。
- index
検証サーバー コントロールがコピーされる位置のインデックス。
使用例
CopyTo メソッドを使用するコード例を次に示します。
' Get 'Validators' of the page to myCollection.
Dim myCollection As ValidatorCollection = Page.Validators
Dim myObjArray() As Object = New Object(4){0, 0, 0, 0, 0}
' Copy the 'Collection' to 'Array'.
myCollection.CopyTo(myObjArray, 0)
' Print the values in the Array.
Dim myStr As String = " "
Dim i As Integer
For i = 0 To myCollection.Count - 1
myStr += myObjArray(i).ToString()
myStr += " "
Next i
msgLabel.Text = myStr
// Get 'Validators' of the page to myCollection.
ValidatorCollection myCollection = Page.Validators ;
// Object Array.
Object[] myObjArray = new Object[5] { 0, 0, 0, 0, 0 };
// Copy the 'Collection' to 'Array'.
myCollection.CopyTo(myObjArray,0);
// Print the values in the Array.
string myStr = " ";
for(int i = 0; i<myCollection.Count; i++)
{
myStr += myObjArray[i].ToString();
myStr += " ";
}
msgLabel.Text = myStr;
// Get 'Validators' of the page to myCollection.
ValidatorCollection myCollection = get_Validators();
// Object Array.
Object myObjArray[] = new Object[] { (Int32)0, (Int32)0, (Int32)0,
(Int32)0, (Int32)0 };
// Copy the 'Collection' to 'Array'.
myCollection.CopyTo(myObjArray,0);
// Print the values in the Array.
String myStr = " ";
for(int i = 0; i<myCollection.get_Count(); i++) {
myStr += System.Convert.ToString(myObjArray.get_Item(i));
myStr += " ";
}
msgLabel.set_Text(myStr);
プラットフォーム
Windows 98,Windows Server 2000 SP4,Windows CE,Windows Millennium Edition,Windows Mobile for Pocket PC,Windows Mobile for Smartphone,Windows Server 2003,Windows XP Media Center Edition,Windows XP Professional x64 Edition,Windows XP SP2,Windows XP Starter Edition
Microsoft .NET Framework 3.0 は Windows Vista,Microsoft Windows XP SP2,および Windows Server 2003 SP1 でサポートされています。
バージョン情報
.NET Framework
サポート対象 : 3.0,2.0,1.1,1.0
参照
関連項目
ValidatorCollection クラス
ValidatorCollection メンバ
System.Web.UI 名前空間
IValidator
Page.Validators プロパティ