.. highlightlang:: us .. index:: AppSetDateFormatStrings .. _appsetdateformatstrings: AppSetDateFormatStrings ======================= .. us.tag AppSetDateFormatStrings NOTREADYENGLISH App :ref:`AppSetDateFormatStrings` sets the date/time format strings. The strings are used to format the axes labels. .. function:: rvIndex = AppSetDateFormatStrings(svStrings) .. us.return **Return Value** *rvIndex* is an real vector with the index of the added strings. .. us.params **Parameters** .. uparam:: svStrings *svStrings* is a string vector. .. us.example **Example** Adds the format string ``"CW %W"``. :: svString = AppGetDateFormatStrings() svString = [svString, "CW %W"]; AppSetDateFormatStrings(svString); .. seealso:: :ref:`overview-application-object`, :ref:`AppGetDateFormatStrings`, :ref:`DT_Format`, :ref:`LayerSetAxisDateFormat`, :ref:`LayerGetAxisDateFormat` :sub:`id-620555`