PeriodSettings.GetDateFrom

Syntax:

GetDateFrom()

Returned value:

Type: Date.

Description:

Obtains the period start date.

Availability:

Thick client.

Note:

If the range boundary is set to WithoutRestriction, an empty date is returned.

Example:

PeriodSettings = New PeriodSettings;
PeriodSettings.SetPeriod(BeginOfPeriodDate, EndOfPeriodDate);
If 
PeriodSettings.Edit() Then
    BeginOfPeriodDate = PeriodSettings.GetDateFrom();
    EndOfPeriodDate = PeriodSettings.GetDateTo();
EndIf
;


    

1C:Enterprise Developer's Community