API Documentation > CorelDRAW > 2025-v26 > Fill > IVGFill
Fill.ApplyNoFill method
Apply no Fill to the shape
Syntax:
Sub ApplyNoFill()
Remarks:
The ApplyNoFill method removes the fill from an object, leaving it unfilled.
Examples:
The following VBA example removes the fill from the currently selected objects.
Sub Test()
ActiveSelection.Fill.ApplyNoFill 
End Sub