Product Documentation
Virtuoso Studio Design Environment SKILL Reference
Product Version IC23.1, November 2023

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

g_viewType

DFII view type.

Value Returned

t_userType

User type.

nil

Returns nil when the argument given is nil.

Example

deMapViewTypeToUserType("maskLayout")
=>("layout")
deMapViewTypeToUserType ("unknownViewType") 
=> "unknownViewType"
deMapViewTypeToUserType (nil) 
=> nil

Return to top
 ⠀
X