Solid Edge FrameworkSupport Type Library
PrimaryFrame Property
Description
Sets and returns the primary frame text.
Property type
Read-write property
Syntax
Visual Basic
Public Property PrimaryFrame As String
Example
Private Sub Form_Load()
    Dim objApp As SolidEdgeFrameWork.Application
    Dim objDoc As SolidEdgeDraft.DraftDocument
    Dim objSheet As SolidEdgeDraft.Sheet
    Dim objFCFDataSets As SolidEdgeFrameworkSupport.FeatureControlFrameDataSets
    Dim objFCFDataSet As SolidEdgeFrameworkSupport.FeatureControlFrameDataSet
    ' Local variables to be declared here
    Dim strPrimaryFrame As String
    ' Create/get the application with specific settings
    On Error Resume Next
    Set objApp = GetObject(, "SolidEdge.Application")
    If Err Then
        Err.Clear
        Set objApp = CreateObject("SolidEdge.Application")
        Set objDoc = objApp.Documents.Add("SolidEdge.DraftDocument")
        objApp.Visible = True
    Else
        Set objDoc = objApp.ActiveDocument
    End If
    On Error GoTo 0
    'Get the Active Sheet object
    Set objSheet = objDoc.ActiveSheet
    'Get the FeatureControlFrameDataSets collection from Document
    Set objFCFDataSets = objDoc.FeatureControlFrameDataSets
    'Add a new FCFDataSet
    Set objFCFDataSet = objFCFDataSets.Add(Name:="MyDataSet")
    'Set the data for PrimaryFrmae
    objFCFDataSet.PrimaryFrame = "FLVB0.001MCVBA"
    'Retrieve the data from PrimaryFrame
    strPrimaryFrame = objFCFDataSet.PrimaryFrame
    ' Release objects
    Set objApp = Nothing
    Set objDoc = Nothing
    Set objSheet = Nothing
    Set objFCFDataSets = Nothing
    Set objFCFDataSet = Nothing
End Sub
See Also

FeatureControlFrameDataSet Object  | FeatureControlFrameDataSet Members

Send comments on this topic.