主要内容

slreq.getLinkableTypes

Get registered document interfaces

Since R2024b

    Description

    [docInterfaces,labels] = slreq.getLinkableTypes returns the registered document interfaces.

    example

    [docInterfaces,labels] = slreq.getLinkableTypes("init") initializes the document interfaces for the current session.

    example

    Examples

    collapse all

    Return the registered document interfaces.

    [docInterfaces,labels] = slreq.getLinkableTypes
    docInterfaces = 13×1 cell
    'linktype_rmi_slreq'          
    'linktype_rmi_matlab'         
    'linktype_rmi_data'           
    'linktype_rmi_safetymanager'  
    'linktype_rmi_mat'            
    'linktype_rmi_word'           
    'linktype_rmi_excel'          
    'linktype_rmi_doors'          
    'linktype_rmi_oslc'           
    'linktype_rmi_url'            
    
    labels = 13×1 cell
    'Requirements Toolbox'      
    'MATLAB Editor Line Range'  
    'Data Dictionary'           
    'SafetyManager'             
    'MAT File'                  
    'Microsoft Word'            
    'Microsoft Excel'           
    'IBM DOORS'                 
    'IBM DOORS Next'            
    'Web Browser URL'

    Initialize the document interfaces for the current session.

    [docInterfaces,labels] = slreq.getLinkableTypes("init")
    docInterfaces = 13×1 cell
    'linktype_rmi_slreq'          
    'linktype_rmi_matlab'         
    'linktype_rmi_data'           
    'linktype_rmi_safetymanager'  
    'linktype_rmi_mat'            
    'linktype_rmi_word'           
    'linktype_rmi_excel'          
    'linktype_rmi_doors'          
    'linktype_rmi_oslc'           
    'linktype_rmi_url'            
    
    labels = 13×1 cell
    'Requirements Toolbox'      
    'MATLAB Editor Line Range'  
    'Data Dictionary'           
    'SafetyManager'             
    'MAT File'                  
    'Microsoft Word'            
    'Microsoft Excel'           
    'IBM DOORS'                 
    'IBM DOORS Next'            
    'Web Browser URL'

    Output Arguments

    collapse all

    Registered document interfaces that used to integrate with third-party applications, returned as a cell array of character vectors.

    Document interface labels, returned as a cell array of character vectors.

    Tips

    Version History

    Introduced in R2024b