Solid Edge FrameworkSupport Type Library
FCFAllAround Property
Description
Specifies whether or not an all around symbol is to be applied to the Leader of the referenced object.
Property type
Read-write property
Syntax
Visual Basic
Public Property FCFAllAround As Boolean
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 bFCFAllAround As Boolean
    ' 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")
    'Get and Set the FCFAllAround display status to the FCFDataSet
    bFCFAllAround = objFCFDataSet.FCFAllAround
    objFCFDataSet.FCFAllAround = Not bFCFAllAround
    ' 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