diff --git a/develop/devguide/Automation/UIBlockTypesOverview.md b/develop/devguide/Automation/UIBlockTypesOverview.md index c010c4c9e8..d10b261e14 100644 --- a/develop/devguide/Automation/UIBlockTypesOverview.md +++ b/develop/devguide/Automation/UIBlockTypesOverview.md @@ -156,7 +156,7 @@ Example: ```csharp var downloadButtonOptions = new AutomationDownloadButtonOptions() { - URL = @"/Documents/DMA_COMMON_DOCUMENTS/DailyReport.pdf", // The URL to the file, which can be an absolute URL or a relative URL to the DMA hostname. + Url = @"/Documents/DMA_COMMON_DOCUMENTS/DailyReport.pdf", // The URL to the file, which can be an absolute URL or a relative URL to the DMA hostname. StartDownloadImmediately = false, // If set to true (the default is false), the download will start immediately when the component is displayed. ReturnWhenDownloadIsStarted = false, // If set to true (the default is false), the engine.ShowUI() method will return as soon as the download is started. FileNameToSave = "Report.PDF", // The file name that will be saved. By default, this is the same as the file name of the document.