PrintQueue.UntilTimeOfDay プロパティ

定義

プリンターがジョブを印刷する最も遅い時刻を取得または設定します。この時刻は、協定世界時刻 (UTC) (グリニッジ標準時 [GMT] とも呼ばれます) の午前 0 時からの分数で表現されます。

public:
 virtual property int UntilTimeOfDay { int get(); void set(int value); };
public virtual int UntilTimeOfDay { get; set; }
member this.UntilTimeOfDay : int with get, set
Public Overridable Property UntilTimeOfDay As Integer

プロパティ値

プリンターが使用できなくなる時刻。この時刻は、午前 0 時 (UTC) からの分数で表現されます。 最大値は 1439 です。 Microsoft Windows プリンターの追加ウィザードを使用してプリンターを初めてインストールすると、プリンターは既定で常に使用可能になり、このプロパティはすべてのタイム ゾーンで 0 を返します。

次の例では、このプロパティを使用して、プリンターが現時点で使用できるかどうかを判断する方法を示します。

private: 
   static void ReportAvailabilityAtThisTime (System::String^% statusReport, System::Printing::PrintQueue^ pq) 
   {
      if (pq->StartTimeOfDay != pq->UntilTimeOfDay)
      {
         System::DateTime utcNow = DateTime::UtcNow;
         System::Int32 utcNowAsMinutesAfterMidnight = (utcNow.TimeOfDay.Hours * 60) + utcNow.TimeOfDay.Minutes;

         // If now is not within the range of available times . . .
         if (!((pq->StartTimeOfDay < utcNowAsMinutesAfterMidnight) && (utcNowAsMinutesAfterMidnight < pq->UntilTimeOfDay)))
         {
            statusReport = statusReport + " Is not available at this time of day. ";
         }
      }
   };
private static void ReportAvailabilityAtThisTime(ref String statusReport, PrintQueue pq)
{
    if (pq.StartTimeOfDay != pq.UntilTimeOfDay) // If the printer is not available 24 hours a day
    {
DateTime utcNow = DateTime.UtcNow;
Int32 utcNowAsMinutesAfterMidnight = (utcNow.TimeOfDay.Hours * 60) + utcNow.TimeOfDay.Minutes;
        
        // If now is not within the range of available times . . .
        if (!((pq.StartTimeOfDay < utcNowAsMinutesAfterMidnight) 
           &&
           (utcNowAsMinutesAfterMidnight < pq.UntilTimeOfDay)))
        {
            statusReport = statusReport + " Is not available at this time of day. ";
        }
    }
}
Private Shared Sub ReportAvailabilityAtThisTime(ByRef statusReport As String, ByVal pq As PrintQueue)
    If pq.StartTimeOfDay <> pq.UntilTimeOfDay Then ' If the printer is not available 24 hours a day
Dim utcNow As Date = Date.UtcNow
Dim utcNowAsMinutesAfterMidnight As Int32 = (utcNow.TimeOfDay.Hours * 60) + utcNow.TimeOfDay.Minutes

        ' If now is not within the range of available times . . .
        If Not((pq.StartTimeOfDay < utcNowAsMinutesAfterMidnight) AndAlso (utcNowAsMinutesAfterMidnight < pq.UntilTimeOfDay)) Then
            statusReport = statusReport & " Is not available at this time of day. "
        End If
    End If
End Sub

注釈

UTC タイム ゾーンにいない場合は、タイム ゾーンの正しい時刻を設定または取得するには、60 の倍数を加算または減算する必要があります。 たとえば、太平洋標準時の北米で夏時間が有効でない場合、現地時刻は UTC より 8 時間早くなります。 タイム ゾーンで午前 12 時に設定 UntilTimeOfDay するには、午前 8 時 (UTC) (480 ( = 8 * 60) ) に設定します。 また、24 時間目 (1439 分) 後に時間が 0 にロールオーバーされることを覚えておく必要があります。 タイム ゾーンで午後 6 時に設定するには、120 (= 2 * 60) の午前 2 時 (UTC) に設定します。 メソッドの操作に役立つタイム ゾーンについては、「 TimeZoneTimeSpan、および DateTime クラス」を参照してください。

プリンターが常に使用可能な場合、このプロパティはすべてのタイム ゾーンで 0 を返します。

適用対象

こちらもご覧ください