データ ハンドラー コンポーネントのカスタム プロパティを指定する PickerProperties オブジェクトを返します。 読み取り専用です。
構文
式。プロパティ
式PickerDialog オブジェクトを返す式。
注釈
PickerProperties オブジェクトのプロパティは、データ ハンドラーに渡されます。
例
次のコードは 、さまざまな PickerDialog プロパティを 設定し、結果を取得します。
Dim objPickerDialog As PickerDialog
Dim objPickerProperties As PickerProperties
Set objPickerDialog = Application.PickerDialog
objPickerDialog.DataHandlerId = "{000CDF0A-0000-0000-C000-000000000046}"
objPickerDialog.Title = "Sample Picker Dialog"
Set objPickerProperties = objPickerDialog.Properties
Set objPickerProperty = objPickerProperties.Add("SiteUrl", "https://my", msoPickerFieldtypeText)
' Show the Picker Dialog with no existing result.
Set objPickerResults = objPickerDialog.Show(True)
関連項目
サポートとフィードバック
Office VBA またはこの説明書に関するご質問やフィードバックがありますか? サポートの受け方およびフィードバックをお寄せいただく方法のガイダンスについては、Office VBA のサポートおよびフィードバックを参照してください。