Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
fb1640fb
Commit
fb1640fb
authored
Mar 28, 2012
by
Jacek Caban
Committed by
Alexandre Julliard
Mar 28, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml.idl: Added IHTMLTableCell declaration.
parent
33742f1e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
88 additions
and
1 deletion
+88
-1
mshtml.idl
include/mshtml.idl
+88
-1
No files found.
include/mshtml.idl
View file @
fb1640fb
...
...
@@ -15339,7 +15339,94 @@ interface IHTMLTableRow : IDispatch
}
/*****************************************************************************
*
DispHTMLTable
interface
*
IHTMLTableCell
interface
*/
[
odl
,
oleautomation
,
dual
,
uuid
(
3050
f23d
-
98b5
-
11
cf
-
bb82
-
00
aa00bdce0b
)
]
interface
IHTMLTableCell
:
IDispatch
{
[
propput
,
id
(
DISPID_IHTMLTABLECELL_ROWSPAN
)
]
HRESULT
rowSpan
(
[
in
]
long
v
)
;
[
propget
,
id
(
DISPID_IHTMLTABLECELL_ROWSPAN
)
]
HRESULT
rowSpan
(
[
retval
,
out
]
long
*
p
)
;
[
propput
,
id
(
DISPID_IHTMLTABLECELL_COLSPAN
)
]
HRESULT
colSpan
(
[
in
]
long
v
)
;
[
propget
,
id
(
DISPID_IHTMLTABLECELL_COLSPAN
)
]
HRESULT
colSpan
(
[
retval
,
out
]
long
*
p
)
;
[
propput
,
id
(
DISPID_IHTMLTABLECELL_ALIGN
)
]
HRESULT
align
(
[
in
]
BSTR
v
)
;
[
propget
,
id
(
DISPID_IHTMLTABLECELL_ALIGN
)
]
HRESULT
align
(
[
retval
,
out
]
BSTR
*
p
)
;
[
propput
,
id
(
DISPID_IHTMLTABLECELL_VALIGN
)
]
HRESULT
vAlign
(
[
in
]
BSTR
v
)
;
[
propget
,
id
(
DISPID_IHTMLTABLECELL_VALIGN
)
]
HRESULT
vAlign
(
[
retval
,
out
]
BSTR
*
p
)
;
[
propput
,
id
(
DISPID_IHTMLTABLECELL_BGCOLOR
)
]
HRESULT
bgColor
(
[
in
]
VARIANT
v
)
;
[
propget
,
id
(
DISPID_IHTMLTABLECELL_BGCOLOR
)
]
HRESULT
bgColor
(
[
retval
,
out
]
VARIANT
*
p
)
;
[
propput
,
id
(
DISPID_IHTMLTABLECELL_NOWRAP
)
]
HRESULT
noWrap
(
[
in
]
VARIANT_BOOL
v
)
;
[
propget
,
id
(
DISPID_IHTMLTABLECELL_NOWRAP
)
]
HRESULT
noWrap
(
[
retval
,
out
]
VARIANT_BOOL
*
p
)
;
[
propput
,
id
(
DISPID_IHTMLTABLECELL_BACKGROUND
)
]
HRESULT
background
(
[
in
]
BSTR
v
)
;
[
propget
,
id
(
DISPID_IHTMLTABLECELL_BACKGROUND
)
]
HRESULT
background
(
[
retval
,
out
]
BSTR
*
p
)
;
[
propput
,
id
(
DISPID_IHTMLTABLECELL_BORDERCOLOR
)
]
HRESULT
borderColor
(
[
in
]
VARIANT
v
)
;
[
propget
,
id
(
DISPID_IHTMLTABLECELL_BORDERCOLOR
)
]
HRESULT
borderColor
(
[
retval
,
out
]
VARIANT
*
p
)
;
[
propput
,
id
(
DISPID_IHTMLTABLECELL_BORDERCOLORLIGHT
)
]
HRESULT
borderColorLight
(
[
in
]
VARIANT
v
)
;
[
propget
,
id
(
DISPID_IHTMLTABLECELL_BORDERCOLORLIGHT
)
]
HRESULT
borderColorLight
(
[
retval
,
out
]
VARIANT
*
p
)
;
[
propput
,
id
(
DISPID_IHTMLTABLECELL_BORDERCOLORDARK
)
]
HRESULT
borderColorDark
(
[
in
]
VARIANT
v
)
;
[
propget
,
id
(
DISPID_IHTMLTABLECELL_BORDERCOLORDARK
)
]
HRESULT
borderColorDark
(
[
retval
,
out
]
VARIANT
*
p
)
;
[
propput
,
id
(
DISPID_IHTMLTABLECELL_WIDTH
)
]
HRESULT
width
(
[
in
]
VARIANT
v
)
;
[
propget
,
id
(
DISPID_IHTMLTABLECELL_WIDTH
)
]
HRESULT
width
(
[
retval
,
out
]
VARIANT
*
p
)
;
[
propput
,
id
(
DISPID_IHTMLTABLECELL_HEIGHT
)
]
HRESULT
height
(
[
in
]
VARIANT
v
)
;
[
propget
,
id
(
DISPID_IHTMLTABLECELL_HEIGHT
)
]
HRESULT
height
(
[
retval
,
out
]
VARIANT
*
p
)
;
[
propget
,
id
(
DISPID_IHTMLTABLECELL_CELLINDEX
)
]
HRESULT
cellIndex
(
[
retval
,
out
]
long
*
p
)
;
}
/*****************************************************************************
*
DispHTMLTable
dispinterface
*/
[
hidden
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment