例: IsResortAscending property (NotesViewColumn - LotusScript®)

次のエージェントは、列が昇順のユーザーソート列であるかどうかを切り替え、列のユーザーソート属性を表示します。

Sub Initialize
  Dim session As New NotesSession
  Dim db As NotesDatabase
  Dim view As NotesView
  Dim vc As NotesViewColumn
  Set db = session.CurrentDatabase
  Set view = db.GetView("View A")
  Set vc = view.Columns(0)
  vc.IsResortAscending = NOT vc.IsResortAscending
  Messagebox "Resort ascending " & vc.IsResortAscending _
  & Chr(13) & "Resort descending " & vc.IsResortDescending _
  & Chr(13) & "Resort to view " & vc.IsResortToView,, _
  "User-sorted column options"
End Sub