Description

Generate DDL using the Quick Launch setting identified by the given filename. PARAMETERS: FileName (Strings).

Syntax

Public Sub GenDDLUsingFileBasedQuickLaunch( _
   ByVal FileName As Variant _
)

Parameters

  • FileName

Example

Sub Main 

Dim d As Diagram 
Dim m As Model 
Dim ddl As DDLGeneration 

Set d = DiagramManager.ActiveDiagram 
Set m = d.ActiveModel 
Set ddl = m.DDLGenerationObject 

ddl.GenDDLUsingFileBasedQuickLaunch("c:\Tmp\file.ddo") 

End Sub
  • No labels