DataRepeaterItem.IsCurrent プロパティ
更新 : 2007 年 11 月
DataRepeaterItem が DataRepeater コントロール内で現在選択されている項目かどうかを示す値を取得または設定します。
名前空間 : Microsoft.VisualBasic.PowerPacks
アセンブリ : Microsoft.VisualBasic.PowerPacks.Vs (Microsoft.VisualBasic.PowerPacks.Vs.dll 内)
構文
'宣言
<BrowsableAttribute(False)> _
Public ReadOnly Property IsCurrent As Boolean
'使用
Dim instance As DataRepeaterItem
Dim value As Boolean
value = instance.IsCurrent
[BrowsableAttribute(false)]
public bool IsCurrent { get; }
[BrowsableAttribute(false)]
public:
property bool IsCurrent {
bool get ();
}
public function get IsCurrent () : boolean
プロパティ値
型 : System.Boolean
DataRepeaterItem が選択されている項目である場合は true。それ以外の場合は false。
解説
IsCurrent が True である場合、DataRepeaterItem の ItemIndex プロパティは DataRepeater コントロールの CurrentItemIndex プロパティと同じです。
例
DrawItem イベント ハンドラを使用して、項目が選択されているときに選択インジケータを表示する方法の例を次に示します。ここでは、フォーム内に DataRepeater1 という名前のバインドされた DataRepeater があり、さらにその中に SelectedPictureBox という名前の非バインド PictureBox コントロールが含まれていると仮定します。
Private Sub DataRepeater1_DrawItem(ByVal sender As Object, ByVal e _
As Microsoft.VisualBasic.PowerPacks.DataRepeaterItemEventArgs) _
Handles DataRepeater1.DrawItem
' If this is the selected item.
If e.DataRepeaterItem.IsCurrent Then
' ...display the PictureBox.
e.DataRepeaterItem.Controls("SelectedPictureBox"). _
Visible = True
Else
' Otherwise, hide the PictureBox.
e.DataRepeaterItem.Controls("SelectedPictureBox"). _
Visible = False
End If
End Sub
private void dataRepeater1_DrawItem(object sender,
Microsoft.VisualBasic.PowerPacks.DataRepeaterItemEventArgs e)
{
// If this is the selected item...
if (e.DataRepeaterItem.IsCurrent)
// ...display the PictureBox.
{
e.DataRepeaterItem.Controls["selectedPictureBox"].Visible = true;
}
else
{
// Otherwise, hide the PictureBox.
e.DataRepeaterItem.Controls["selectedPictureBox"].Visible = false;
}
}
アクセス許可
- 直前の呼び出し元に対する完全な信頼。このメンバは、部分的に信頼されているコードから使用することはできません。詳細については、「部分信頼コードからのライブラリの使用」を参照してください。
参照
参照
Microsoft.VisualBasic.PowerPacks 名前空間