locked
How to get the property values from the object ie object x=e.clickeditem; RRS feed

  • Question

  • How to get the property values from the object ie object x=e.clickeditem;

    in the object x i will be having notesid=1

                                                    notesbody=Hi

                                                    notesheading=sample.

    i want to display the notedbody value in the textblock.how to do it.


    amair

    Friday, August 30, 2013 7:27 AM

Answers

  • var clickedItem = e.clickedItem as Note;
    
    if(clickedItem != null)
    
    {
    
    //take properties from clickedItem.
    
    }
    


    • Edited by Oleg Kurzov Friday, August 30, 2013 8:25 AM
    • Proposed as answer by Sachin S Friday, August 30, 2013 1:45 PM
    • Marked as answer by Jamles HezModerator Wednesday, September 4, 2013 1:50 AM
    Friday, August 30, 2013 8:25 AM