pub trait ICoreWebView2FrameInfo: IUnknown {
// Required methods
unsafe fn get_name(&self, name: *mut LPWSTR) -> HRESULT;
unsafe fn get_source(&self, source: *mut LPWSTR) -> HRESULT;
}Expand description
Provides a set of properties for a frame in the ICoreWebView2.
Required Methods§
Sourceunsafe fn get_name(&self, name: *mut LPWSTR) -> HRESULT
unsafe fn get_name(&self, name: *mut LPWSTR) -> HRESULT
The name attribute of the frame, as in <iframe name="frame-name" ...>.
The returned string is empty when the frame has no name attribute.
Sourceunsafe fn get_source(&self, source: *mut LPWSTR) -> HRESULT
unsafe fn get_source(&self, source: *mut LPWSTR) -> HRESULT
The URI of the document in the frame.
Trait Implementations§
Source§impl ComInterface for dyn ICoreWebView2FrameInfo
impl ComInterface for dyn ICoreWebView2FrameInfo
Source§type VTable = ICoreWebView2FrameInfoVTable
type VTable = ICoreWebView2FrameInfoVTable
A COM compatible V-Table
Source§fn is_iid_in_inheritance_chain(riid: &GUID) -> bool
fn is_iid_in_inheritance_chain(riid: &GUID) -> bool
Check whether a given IID is in the inheritance hierarchy of this interface