Class PropertyDrawingFileInfo
- Namespace
- combit.Reporting.Dom
- Assembly
- combit.ListLabel31.CrossPlatform.dll
Represents file information for drawing contents including file name and relative path flag.
public class PropertyDrawingFileInfo : DomItem
- Inheritance
-
PropertyDrawingFileInfo
- Inherited Members
Properties
FileName
Gets or sets the file name (non formula property).
public string FileName { get; set; }
Property Value
FileNameIsRelative
Gets or sets whether the file name is stored relative to the project.
public string FileNameIsRelative { get; set; }
Property Value
Methods
GetAbsoluteFileName()
Returns the absolute file name for the current item, resolving relative paths if necessary.
public string GetAbsoluteFileName()
Returns
- string
The absolute file name as a string. If the file name is already absolute or marked as evaluated, returns the file name as is; otherwise, returns the file name combined with the project path.
Remarks
If the file name is relative and not already evaluated, this method attempts to resolve it using the project path. If the project path cannot be determined, the original file name is returned.