SchFrameInfo (Object)

Manage the background view of a schematic viewer.

Methods


Sub GetLabelCode( oLabel, iBHoriz)
Get the frame label code.
Parameters:
oLabel
Label code.
iBHoriz
If TRUE, then the labels are for horizontal spacing, else, they are for vertical spacing.
Example:
 
 Dim objThisIntf As SchFrameInfo
 Dim strVar1 As String
 Dim bVar2 As boolean
  ...
 objThisIntf.GetLabelCodestrVar1,bVar2
 
Sub GetOriginCornerCode( oOriginCorner)
Get the frame origin corner code.
Parameters:
oOriginCorner
Origin corner code.
Example:
 
 Dim objThisIntf As SchFrameInfo
 Dim strVar1 As String
  ...
 objThisIntf.GetOriginCornerCodestrVar1
 
Sub GetSpacingCode( oSpacing, iBHoriz)
Get the frame spacing code.
Parameters:
oSpacing
Spacing code.
iBHoriz
If TRUE, then the spacing is for horizontal, else, the spacing is for vertical.
Example:
 
 Dim objThisIntf As SchFrameInfo
 Dim strVar1 As String
 Dim bVar2 As boolean
  ...
 objThisIntf.GetSpacingCodestrVar1,bVar2
 
Sub SetLabelCode( iLabel, iBHoriz)
Set the frame label code.
Parameters:
iLabel
Label code.
iBHoriz
If TRUE, then the labels are for horizontal spacing, else, they are for vertical spacing.
Example:
 
 Dim objThisIntf As SchFrameInfo
 Dim strVar1 As String
 Dim bVar2 As boolean
  ...
 objThisIntf.SetLabelCodestrVar1,bVar2
 
Sub SetOriginCornerCode( iOriginCorner)
Set the frame origin corner code.
Parameters:
iOriginCorner
Origin corner code.
Example:
 
 Dim objThisIntf As SchFrameInfo
 Dim strVar1 As String
  ...
 objThisIntf.SetOriginCornerCodestrVar1
 
Sub SetSpacingCode( iSpacing, iBHoriz)
Set the frame spacing code.
Parameters:
iSpacing
Spacing code.
iBHoriz
If TRUE, then the spacing is for horizontal, else, the spacing is for vertical.
Example:
 
 Dim objThisIntf As SchFrameInfo
 Dim strVar1 As String
 Dim bVar2 As boolean
  ...
 objThisIntf.SetSpacingCodestrVar1,bVar2