本文整理汇总了C++中HTMLTextAreaElement::select方法的典型用法代码示例。如果您正苦于以下问题:C++ HTMLTextAreaElement::select方法的具体用法?C++ HTMLTextAreaElement::select怎么用?C++ HTMLTextAreaElement::select使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类HTMLTextAreaElement
的用法示例。
在下文中一共展示了HTMLTextAreaElement::select方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: select
HRESULT STDMETHODCALLTYPE DOMHTMLTextAreaElement::select( void)
{
ASSERT(m_element && m_element->hasTagName(textareaTag));
HTMLTextAreaElement* textareaElement = static_cast<HTMLTextAreaElement*>(m_element);
textareaElement->select();
return S_OK;
}
示例2: selectCallback
static v8::Handle<v8::Value> selectCallback(const v8::Arguments& args)
{
INC_STATS("DOM.HTMLTextAreaElement.select");
HTMLTextAreaElement* imp = V8HTMLTextAreaElement::toNative(args.Holder());
imp->select();
return v8::Handle<v8::Value>();
}
示例3: select
HRESULT STDMETHODCALLTYPE DOMHTMLTextAreaElement::select( void)
{
ASSERT(m_element && isHTMLTextAreaElement(m_element));
HTMLTextAreaElement* textareaElement = toHTMLTextAreaElement(m_element);
textareaElement->select();
return S_OK;
}
示例4: jsHTMLTextAreaElementPrototypeFunctionSelect
JSValue* jsHTMLTextAreaElementPrototypeFunctionSelect(ExecState* exec, JSObject*, JSValue* thisValue, const ArgList& args)
{
if (!thisValue->isObject(&JSHTMLTextAreaElement::s_info))
return throwError(exec, TypeError);
JSHTMLTextAreaElement* castedThisObj = static_cast<JSHTMLTextAreaElement*>(thisValue);
HTMLTextAreaElement* imp = static_cast<HTMLTextAreaElement*>(castedThisObj->impl());
imp->select();
return jsUndefined();
}
示例5: jsHTMLTextAreaElementPrototypeFunctionSelect
JSValue JSC_HOST_CALL jsHTMLTextAreaElementPrototypeFunctionSelect(ExecState* exec, JSObject*, JSValue thisValue, const ArgList& args)
{
UNUSED_PARAM(args);
if (!thisValue.isObject(&JSHTMLTextAreaElement::s_info))
return throwError(exec, TypeError);
JSHTMLTextAreaElement* castedThisObj = static_cast<JSHTMLTextAreaElement*>(asObject(thisValue));
HTMLTextAreaElement* imp = static_cast<HTMLTextAreaElement*>(castedThisObj->impl());
imp->select();
return jsUndefined();
}
示例6: select
void DOMHTMLTextAreaElement::select()
{
ASSERT(m_element && m_element->hasTagName(textareaTag));
HTMLTextAreaElement* textareaElement = static_cast<HTMLTextAreaElement*>(m_element);
textareaElement->select();
}