프로필을 보면 이미 Xpages에 익숙합니다.
앱이 복잡하지 않은 경우 Xpages로 이동합니다. 스타일링은 트라 드에서 쉽기 때문에 그렇습니다. 메모 앱. 그것이 나를 위해.
다음은 노트의 섹션을 만드는 lotusscript의 예입니다. 어떤 종류의 앱을 만들고 있는지, 플랫폼, 메모, 웹 또는 둘 모두에 대해 잘 모르겠습니다. breaking par에
는 예를 들어, 느릅 나무는 메일 파일에게 메모 양식을 사용하여 메일 본문 여기
섹션 및 텍스트 배치되는 코드
Sub Initialize
Dim session As New NotesSession
Dim mailDb As New NotesDatabase("", "")
Dim ws As New NotesUIWorkspace
Dim doc As NotesDocument
Dim body As NotesRichTextItem
Dim style As NotesRichTextStyle
Dim color As NotesColorObject
Call mailDb.OpenMail
Set doc = mailDb.CreateDocument
Call doc.ReplaceItemValue("Form", "Memo")
Set body = doc.CreateRichTextItem("Body")
Set style = session.CreateRichTextStyle
Set color = session.CreateColorObject
Call body.AppendText("This is some text before the section")
Call body.AddNewline(2)
Call body.BeginSection("Expanded Section", style, color, True)
Call body.AppendText("Here is some text within the section")
Call body.AddNewline(2)
Call body.AppendText("Here is some more text within the section")
Call body.EndSection
Call body.AddNewline(2)
Call body.AppendText("This is some text between the two sections")
Call body.AddNewline(2)
Call body.BeginSection("Collapsed Section")
Call body.AppendText("Here is some text within the section")
Call body.AddNewline(2)
Call body.AppendText("Here is some more text within the section")
Call body.EndSection
Call body.AddNewline(2)
Call body.AppendText("This is some text after the section")
Call doc.Save(True, False, False)
Call ws.EditDocument(True, doc)
Call doc.Remove(True)
End Sub
을 completness를 들어 여기에 LotusScript와 에이전트를 호출하는 방법을 튜토리얼입니다 x 페이지에서 Tutorial-Introduction-to-XPages-Exercise-20 희망이 있습니다.
편집 : 노트 클라이언트에서 css 및 html에 대해 survey을 보유하고 있음을 기억합니다.
혼란 스럽습니다. 이것은 나에게 연꽃처럼 보입니다. 이것이 xPages와 어떤 관련이 있습니까? 예에서 3 부분 접을 수있는 섹션 유형을 설정합니까? –
내 대답을 다소 편집했습니다. –