Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Description

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

Syntax

Code Block
languagevb
Public Sub GenDDLUsingFileBasedQuickLaunch( _
   ByVal FileName As Variant _
)

Parameters

  • FileName

Example

Code Block
languagevb
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
Info
titleSee Also