دسترسی سریع و آسان: به دریافت SPFolder از SPListItem در گیرنده رویداد

من نفرت را به آن اعتراف, but I struggled with this one all day. My event receiver needs to update a field of its parent folder. This little bit shows how to do it:

خصوصی از درجه اعتبار ساقط UpdateParentFolder(SPItemEventProperties خواص)
{

SPFolder thisItemFolder = properties.ListItem.File.ParentFolder;
thisItemFolder.Item["ZZ Approval Status"] = "Good news, هر کس!";
thisItemFolder.Item.Update();


} // UpdateParentFolder

در این مورد, I’m working with a document library and the properties are coming from an ItemAdded event.

The trick is that you can’t get the SPFolder of the item directly from the item itself (i.e. properties.ListItem.Folder is null). در عوض, go to the list item’s associated File and get the File’s folder.

</پایان>

مشترک شدن در وبلاگ من!

یکی در "دسترسی سریع و آسان: به دریافت SPFolder از SPListItem در گیرنده رویداد

پاسخ

آدرس ایمیل شما منتشر نخواهد شد. بخشهای موردنیاز علامتگذاری شدهاند *