AuthCandidateフォームプロパティがTrueのフォームの情報(Nameプロパティ、Titileプロパティ、AuthParamプロパティ)を2次元配列で返します。filterを指定すると、AuthCandidateがTrueのフォームのうち、AuthFilterフォームプロパティの記述内容がfilterの条件に該当するフォームのみを抽出対象とします。 
  
例)フォームの各プロパティが以下のように設定されている場合を例に説明します。 
  
Form01 
.Title ・・・Title01 
.AuthCandidate ・・・True 
.AuthFilter ・・・"123" 
.AuthParam ・・・111 
 | 
Form02 
.Title ・・・Title02 
.AuthCandidate ・・・True 
.AuthFilter ・・・"abc" 
.AuthParam ・・・222 
 | 
Form03 
.Title ・・・Title03 
.AuthCandidate ・・・True 
.AuthFilter ・・・"123" 
.AuthParam ・・・"" 
 | 
Form04 
.Title ・・・Title04 
.AuthCandidate ・・・False 
.AuthFilter ・・・"123" 
.AuthParam ・・・"" 
 | 
 
 
 
  
GetAuthCandidate() の実行結果は以下のとおりです。 
  
 c(c("Form01", "Form02","Form03"), c("Title01", "Title02", "Title03"), c("111", "222", "")) 
  
GetAuthCandidate("123") の実行結果は以下のとおりです。 
  
 c(c("Form01", "Form03"), c("Title01", "Title03"), c("111", "")) 
 |