Sharepoint 2010 Webパーツ内のWebBrowsable
とPersonalizable
という属性の違いは何ですか?WebBrowsableとWebパーツのパーソナライズ可能
それが明示的に言及していないと私はこれが私にソートを取得したいと思いますが -
[WebBrowsable]
public string IconURL { get; set; }
MSDNはwebbrowseable
は、すべてのユーザーのためにあるのに対しpersonalizable
は、ユーザごとであるという印象を与える対
[Personalizable(), WebBrowsable]
public string IconURL { get; set; }
頭。
など。 personalizable
にユーザ固有のプロパティを設定し、webbrowsable
にウェブパーツを設定することはできますか?
属性を 'WebPartStorage(Storage.Shared)'に設定すると、 'WebPartStorage(Storage.Personal) 'が1人のユーザに対してのみ設定されます。 – Darbio
@JD、はい。 [['' WebPartStorage'](http://msdn.microsoft.com/en-us/library/microsoft.sharepoint.webpartpages.webpartstorageattribute.aspx)]は、SharePoint Onlineの '[Personalizable]'に相当します。 –
WebBrowseableがtrueに設定されていても、カスタムEditorPartを通じてプロパティを編集することができます。 – knight0323