AppSetDateFormatStringsΒΆ

AppSetDateFormatStrings sets the date/time format strings. The strings are used to format the axes labels.

rvIndex = AppSetDateFormatStrings(svStrings)

Return Value

rvIndex is an real vector with the index of the added strings.

Parameters

svStrings

svStrings is a string vector.

Example

Adds the format string "CW %W".

svString = AppGetDateFormatStrings()
svString = [svString, "CW %W"];
AppSetDateFormatStrings(svString);

id-620555