deMapViewTypeToUserType
deMapViewTypeToUserType(
g_viewType
)
=> t_userType / nil
Description
Maps the dfII_viewType to the user type.
If the given view type is not found in the mapping, the function returns the view type itself. For example, the function will return nil if the argument given is nil, because nil is not in the mapping.
Arguments
Value Returned
Example
deMapViewTypeToUserType("maskLayout")
=>("layout")
deMapViewTypeToUserType ("unknownViewType")
=> "unknownViewType"
deMapViewTypeToUserType (nil)
=> nil
Return to top