Not really. That tab of the iProperties dialog is mostly just a reflection of the Windows file system type properties related to the file. However, there are several other ways to get the file name of any Inventor document, as long as it actually has one. If a file was just created using the New command, and has not been saved yet, it will not return a path or file name, because it has not been assigned one yet.
Here are just a few (of many) ways to get just the file name of the current document, without the path or file extension in an iLogic rule.
a = ThisDoc.FileName(False)
b = Split(ThisApplication.ActiveDocument.DisplayName,".")(0)
c = System.IO.Path.GetFileNameWithoutExtension(ThisApplication.ActiveDocument.FullFileName)
MsgBox("a = " & a, , "")
MsgBox("b = " & b, , "")
MsgBox("c = " & c, , "")
If this solved your problem, or answered your question, please click ACCEPT SOLUTION.
Or, if this helped you, please click (LIKE or KUDOS) 👍.
If you want and have time, I would appreciate your Vote(s) for My IDEAS 💡or you can Explore My CONTRIBUTIONS
Wesley Crihfield

(Not an Autodesk Employee)