SpaceObServer.Application.Properties.HistoryIntervalEnd

<< Click to Display Table of Contents >>

Navigation:  OLE Automation > Application > Properties >

SpaceObServer.Application.Properties.HistoryIntervalEnd

Description

Holds the "To" date of the "History" interval.

 
Syntax

property HistoryIntervalEnd: <String>;

 
Example

1.)

   $SOS.HistoryIntervalEnd = "2015-12-31" #PowerShell

   SOS.HistoryIntervalEnd = "2015-12-31" 'VBS

Sets the end date of the History interval to the 31. December 2015.

2.)

   $SOS.HistoryIntervalEnd = Get-Date -Format "yyyy-MM-dd" #PowerShell

   SOS.HistoryIntervalEnd = Year(Now) & "-" & Month(Now) & "-" & Day(Now) 'VBS

Sets the end date of the History interval to Today.

 
Remarks

This interval is used for the "History" chart and for the value "Size Growth" of other export types.
The date format is "YYYY-MM-DD".