From 8a7daff45a55578b8ee89bad33ccb2ce396ce62e Mon Sep 17 00:00:00 2001 From: Dennis Date: Tue, 28 May 2024 10:40:58 +0200 Subject: [PATCH] Allow converting ComResult to VARIANT Allows you to do this with the Excel COM interface: ``` auto range = sheet.Range()(sheet.Cells()(1, 1), sheet.Cells()(3, 4)); ``` --- com.d | 2 ++ 1 file changed, 2 insertions(+) diff --git a/com.d b/com.d index c54b836..3fe5cb2 100644 --- a/com.d +++ b/com.d @@ -605,6 +605,8 @@ VARIANT toComVariant(T)(T arg) { ret.pdispVal = arg.innerComObject_; } else static if(is(T : ComProperty)) { ret = arg._fetchProperty(); + } else static if (is(T : ComResult)) { + ret = arg.result; } else static if(is(T : int)) { ret.vt = 3; ret.intVal = arg;