API Documentation > CorelDRAW > 2025-v26 > Properties > IVGProperties
Properties.Description method
Gets a property Description
Syntax:
Sub Description(ByVal Index As Long, ByRef Name As String, ByRef ID As Long)
Parameters:
Name Type Description
Index
Long
Name
String
ID
Long
Remarks:
The Description method returns the name and ID of a data item as specified by index number.
Examples:
The following VBA example shows the list of all properties and their values for the active document.
Sub Test()
Dim s As String, i As Long
Dim Name As String, ID As Long
s = "Document property list:"
For i = 1 To ActiveDocument.Properties.Count
  ActiveDocument.Properties.Description i, Name, ID
  s = s & vbCr & "<" & Name & "," & ID & "> = "
  s = s & ActiveDocument.Properties.ItemByIndex(i)
Next i
MsgBox s 
End Sub