1
コードでテキストを設定しようとしても動作しません。入力フィールドを既に設定していて問題なく正常に動作しています。プログラムでテキストエリアを設定しても動作しないC#
GeckoElementCollection TextAreaCollection =
geckoWebBrowser.Document.GetElementsByTagName("textarea");
foreach (GeckoElement textArea in TextAreaCollection)
{
string textAreaName = textArea.GetAttribute("name");
if (textAreaName == "message")
{
((GeckoHtmlElement)textArea).Focus();
// ((GeckoHtmlElement)textArea).SetAttribute("value", selectedAD.description);
((GeckoHtmlElement)textArea).TextContent = selectedAD.description;
}
}