GefFrameFormat (object)

Represents the attributes of a frame object.
Description: The GefFrameFormat object represents the attributes of a frame object. See the GefFrameContainerFormat object for the attributes of a frame container.

Example:

Sub FrameFormat_FrameExpression()
    
    Dim oCimObj As GefObject
    Dim oCimFrameFmt As GefFrameFormat
    Dim oCimfrmObj As GefObject
    Dim oCimFrmContFmt As GefFrameContainerFormat
    Dim oCimFrameObj As GefObject
    
    Set oCimObj = CimGetObject
    Set oCimFrmContFmt = oCimObj.FrameContainerFormat
    If Not oCimFrmContFmt Is Nothing Then
        Set oCimFrameObj = oCimFrmContFmt.CurrentFrame
        Set oCimFrameFmt = oCimFrameObj.FrameFormat
        If Not oCimFrameFmt Is Nothing Then
            MsgBox "The frame expression for the current frame " & _
                "is " & oCimFrameFmt.FrameExpression
        End If
    End If
    
End Sub
Properties: Application , FrameExpression , Parent
Methods: