SelectionRange.Start プロパティとは? わかりやすく解説

Weblio 辞書 > コンピュータ > .NET Framework クラス ライブラリ リファレンス > SelectionRange.Start プロパティの意味・解説 

SelectionRange.Start プロパティ

選択範囲開始日時取得または設定します

名前空間: System.Windows.Forms
アセンブリ: System.Windows.Forms (system.windows.forms.dll 内)
構文構文

使用例使用例

SelectionRange オブジェクト作成し、その Start プロパティEnd プロパティ設定しSelectionRange オブジェクトを MonthCalendar コントロールの SelectionRange プロパティ割り当てる例を次に示します。DateChanged イベント発生すると、Start プロパティおよび End プロパティの値がテキスト ボックス表示されます。この例は、2 つTextBox コントロールButton コントロール、および MonthCalendar コントロール配置されForm があることを前提にしています。

Private Sub button1_Click(sender As
 Object, _
  e As EventArgs) Handles button1.Click
   ' Create a SelectionRange object and set its Start and End properties.
   Dim sr As New SelectionRange()
   sr.Start = DateTime.Parse(Me.textBox1.Text)
   sr.End = DateTime.Parse(Me.textBox2.Text)
   ' Assign the SelectionRange object to the
   ' SelectionRange property of the MonthCalendar control. 
   Me.monthCalendar1.SelectionRange = sr
End Sub 


Private Sub monthCalendar1_DateChanged(sender
 As Object, _
  e As DateRangeEventArgs) Handles monthCalendar1.DateChanged
   ' Display the Start and End property values of
   ' the SelectionRange object in the text boxes. 
   Me.textBox1.Text = monthCalendar1.SelectionRange.Start.Date.ToShortDateString()
   Me.textBox2.Text = monthCalendar1.SelectionRange.End.Date.ToShortDateString()
End Sub
private void button1_Click(object sender, System.EventArgs
 e)
{
   // Create a SelectionRange object and set its Start and End properties.
   SelectionRange sr = new SelectionRange();
   sr.Start = DateTime.Parse(this.textBox1.Text);
   sr.End = DateTime.Parse(this.textBox2.Text);
   /* Assign the SelectionRange object to the 
      SelectionRange property of the MonthCalendar control. */
   this.monthCalendar1.SelectionRange = sr;
}

private void monthCalendar1_DateChanged(object
 sender, DateRangeEventArgs e)
{
   /* Display the Start and End property values of 
      the SelectionRange object in the text boxes. */
   this.textBox1.Text = 
     monthCalendar1.SelectionRange.Start.Date.ToShortDateString();
   this.textBox2.Text = 
     monthCalendar1.SelectionRange.End.Date.ToShortDateString();
}
private:
   void button1_Click( Object^ /*sender*/, System::EventArgs^
 /*e*/ )
   {
      // Create a SelectionRange object and set its Start and End properties.
      SelectionRange^ sr = gcnew SelectionRange;
      sr->Start = DateTime::Parse( this->textBox1->Text
 );
      sr->End = DateTime::Parse( this->textBox2->Text
 );
      
      /* Assign the SelectionRange object to the
            SelectionRange property of the MonthCalendar control. */
      this->monthCalendar1->SelectionRange = sr;
   }

   void monthCalendar1_DateChanged( Object^ /*sender*/, DateRangeEventArgs^
 /*e*/ )
   {
      /* Display the Start and End property values of
            the SelectionRange object in the text boxes. */
      this->textBox1->Text = monthCalendar1->SelectionRange->Start.Date.ToShortDateString();
      this->textBox2->Text = monthCalendar1->SelectionRange->End.Date.ToShortDateString();
   }
private void button1_Click(Object sender, System.EventArgs
 e)
{
    // Create a SelectionRange object and set its Start and End properties.
    SelectionRange sr = new SelectionRange();
    sr.set_Start(DateTime.Parse(this.textBox1.get_Text()));
    sr.set_End(DateTime.Parse(this.textBox2.get_Text()));

    /* Assign the SelectionRange object to the 
       SelectionRange property of the MonthCalendar control. */
    this.monthCalendar1.set_SelectionRange(sr);
} //button1_Click

private void monthCalendar1_DateChanged(Object
 sender, DateRangeEventArgs e)
{
    /* Display the Start and End property values of 
       the SelectionRange object in the text boxes. */
    this.textBox1.set_Text(monthCalendar1.get_SelectionRange().get_Start().
        get_Date().ToShortDateString());
    this.textBox2.set_Text(monthCalendar1.get_SelectionRange().get_End().
        get_Date().ToShortDateString());
} //monthCalendar1_DateChanged
プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照


このページでは「.NET Framework クラス ライブラリ リファレンス」からSelectionRange.Start プロパティを検索した結果を表示しています。
Weblioに収録されているすべての辞書からSelectionRange.Start プロパティを検索する場合は、下記のリンクをクリックしてください。
 全ての辞書からSelectionRange.Start プロパティ を検索

英和和英テキスト翻訳>> Weblio翻訳
英語⇒日本語日本語⇒英語
  

辞書ショートカット

すべての辞書の索引

「SelectionRange.Start プロパティ」の関連用語

SelectionRange.Start プロパティのお隣キーワード
検索ランキング

   

英語⇒日本語
日本語⇒英語
   



SelectionRange.Start プロパティのページの著作権
Weblio 辞書 情報提供元は 参加元一覧 にて確認できます。

   
日本マイクロソフト株式会社日本マイクロソフト株式会社
© 2025 Microsoft.All rights reserved.

©2025 GRAS Group, Inc.RSS