Wonderful, awesome, perfect, is what I needed.
In case anyone is interested:
In the example provided by @Curtis_Waguespack, there are three rules of iLogic, I was not sure where to put this code and I added it in the first rule "Move Symbol", thus:
'define border offset adjustment value
oBorderWidth = 0.325 * 2.54 '2.54 converts value to inches
Dim oDrawDoc As DrawingDocument = ThisApplication.ActiveDocument
Dim oSheet As Sheet = oDrawDoc.ActiveSheet
If oSheet.Size = Inventor.DrawingSheetSizeEnum.kA4DrawingSheetSize Then
oSheet.Orientation = Inventor.PageOrientationTypeEnum.kPortraitPageOrientation
Else
oSheet.Orientation = Inventor.PageOrientationTypeEnum.kLandscapePageOrientation
End If
For Each oSymbol As SketchedSymbol In oSheet.SketchedSymbols
If oSymbol.Name = "My Table" Then
Dim oPoint As Point2d = oSymbol.Position
oPoint.X = oSheet.Width - oBorderWidth
oPoint.Y = oSheet.Height - oBorderWidth
oSymbol.Position = oPoint
End If
Next
Thank you very much @salariua
(Sorry for my English, I use a translator.)
-------------------------
Un saludo.
Mecanico14
Siempre parece imposible hasta que se hace.