delphi 08 HTML 구성 요소
5577 단어 Delphi
///HTML
/// ID
/// Line (WebBrowser1.Document as IHTMLDocument2).execCommand('InsertHorizontalRule', True, '');
/// Button (WebBrowser1.Document as IHTMLDocument2).execCommand('InsertButton', True, '');
/// CheckBox (WebBrowser1.Document as IHTMLDocument2).execCommand('InsertInputCheckbox', True, '');
/// Radio (WebBrowser1.Document as IHTMLDocument2).execCommand('InsertInputRadio', True, '');
/// Edit (WebBrowser1.Document as IHTMLDocument2).execCommand('InsertInputText', True, '');
/// Memo (WebBrowser1.Document as IHTMLDocument2).execCommand('InsertTextArea', True, '');
/// PswEdit (WebBrowser1.Document as IHTMLDocument2).execCommand('InsertInputPassword', True, '');
/// GroupBox (WebBrowser1.Document as IHTMLDocument2).execCommand('InsertIFrame', True, '');
/// ListBox (WebBrowser1.Document as IHTMLDocument2).execCommand('InsertSelectListbox', True, '');
/// Combobox (WebBrowser1.Document as IHTMLDocument2).execCommand('InsertSelectDropdown', True, '');
{
InsertFieldset
InsertInputFileUpload
InsertInputHidden
InsertInputImage
InsertInputSubmit
InsertMarquee
}
procedure WB_InsertHorizontalRule();
begin
(Form1.WebBrowser1.Document as IHTMLDocument2).execCommand('InsertHorizontalRule', True, '');
end;
procedure WB_InsertButton();
begin
(Form1.WebBrowser1.Document as IHTMLDocument2).execCommand('InsertButton', True, '');
end;
procedure WB_InsertCheckbox();
begin
(Form1.WebBrowser1.Document as IHTMLDocument2).execCommand('InsertInputCheckbox', True, '');
end;
procedure WB_InsertRadio();
begin
(Form1.WebBrowser1.Document as IHTMLDocument2).execCommand('InsertInputRadio', True, '');
end;
procedure WB_InsertInputText();
begin
(Form1.WebBrowser1.Document as IHTMLDocument2).execCommand('InsertInputText', True, '');
end;
procedure WB_InsertTextArea();
begin
(Form1.WebBrowser1.Document as IHTMLDocument2).execCommand('InsertTextArea', True, '');
end;
procedure WB_InsertInputPassword();
begin
(Form1.WebBrowser1.Document as IHTMLDocument2).execCommand('InsertInputPassword', True, '');
end;
procedure WB_InsertIFrame();
begin
(Form1.WebBrowser1.Document as IHTMLDocument2).execCommand('InsertIFrame', True, '');
end;
procedure WB_InsertSelectListbox();
begin
(Form1.WebBrowser1.Document as IHTMLDocument2).execCommand('InsertSelectListbox', True, '');
end;
procedure WB_InsertSelectDropdown();
begin
(Form1.WebBrowser1.Document as IHTMLDocument2).execCommand('InsertSelectDropdown', True, '');
end;
a
Wiz
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
[Delphi] TStringBuilder그리고 꼭 사용해야만 할까? 그림처럼 Heap 영역에 "Hello" 공간을 생성하고 포인팅을 한다. "Hello World" 공간을 새로 생성한 후 포인팅을 하게 된다. 결국 "Hello" 라는 String 객체가 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.