mirror of https://github.com/adamdruppe/arsd.git
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:
parent
46ecb7efc6
commit
8a7daff45a
2
com.d
2
com.d
|
@ -605,6 +605,8 @@ VARIANT toComVariant(T)(T arg) {
|
||||||
ret.pdispVal = arg.innerComObject_;
|
ret.pdispVal = arg.innerComObject_;
|
||||||
} else static if(is(T : ComProperty)) {
|
} else static if(is(T : ComProperty)) {
|
||||||
ret = arg._fetchProperty();
|
ret = arg._fetchProperty();
|
||||||
|
} else static if (is(T : ComResult)) {
|
||||||
|
ret = arg.result;
|
||||||
} else static if(is(T : int)) {
|
} else static if(is(T : int)) {
|
||||||
ret.vt = 3;
|
ret.vt = 3;
|
||||||
ret.intVal = arg;
|
ret.intVal = arg;
|
||||||
|
|
Loading…
Reference in New Issue