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));
```
This commit is contained in:
Dennis 2024-05-28 10:40:58 +02:00 committed by GitHub
parent 46ecb7efc6
commit 8a7daff45a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 0 deletions

2
com.d
View File

@ -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;