docs.fs_PumlHeaderTopToBottom - FN

type: FN ( scalar function ), modify_date: 2021-08-29 22:17:38

RepoObject_guid: ED5FD8EE-E90A-EC11-8516-A81E8446D5B0

Description

Examples

Parameters

  • (nvarchar(4000))

Entity Diagram

entity-docs.fs_pumlheadertoptobottom

References

Object Reference Diagram - 1 1

entity_1_1_objectref-docs.fs_pumlheadertoptobottom

Object Reference Diagram - Referenced - 30 0

entity_30_0_objectref-docs.fs_pumlheadertoptobottom

Object Reference Diagram - Referencing - 0 30

entity_0_30_objectref-docs.fs_pumlheadertoptobottom

sql_modules_definition

docs.fs_PumlHeaderTopToBottom - FN script
create Function docs.fs_PumlHeaderToToBottom
()
Returns NVarchar(4000)
As
Begin
    Return
    (
        Select
            PumlHeaderLeftToRight = Concat (
                                               '''Left to right direction'
                                             , Char ( 13 ) + Char ( 10 )
                                             , 'top to bottom direction'
                                             , Char ( 13 ) + Char ( 10 )
                                             , 'hide circle'
                                             , Char ( 13 ) + Char ( 10 )
                                             , '''avoide "." issues:'
                                             , Char ( 13 ) + Char ( 10 )
                                             , 'set namespaceSeparator none'
                                             , Char ( 13 ) + Char ( 10 )
                                             , Char ( 13 ) + Char ( 10 )
                                             , skin.Parameter_value_result
                                             , Char ( 13 ) + Char ( 10 )
                                             , Char ( 13 ) + Char ( 10 )
                                           )
        From
            config.ftv_get_parameter_value ( 'puml_skinparam_class', '' ) As skin
    )
End