SPRatingUsageEntry.FeedbackQuestionText Property
Gets or sets the text of the feedback question that is logged.
Namespace: Microsoft.SharePoint.Administration
Assembly: Microsoft.SharePoint (in Microsoft.SharePoint.dll)
Available in Sandboxed Solutions: No
Syntax
'Declaration
Public Property FeedbackQuestionText As String
Get
Set
'Usage
Dim instance As SPRatingUsageEntry
Dim value As String
value = instance.FeedbackQuestionText
instance.FeedbackQuestionText = value
public string FeedbackQuestionText { get; set; }
Property Value
Type: System.String
The text of the feedback question.
Remarks
Consider a feedback control with two questions. The first question is "Is this Helpful, Yes or No?". The second question varies depending on the answer to the first question. The FeedbackQuestionId property is the GUID that represents both the first question and second question. If you change the text from "Is this helpful, Yes or No?" to "Was this helpful, Yes or No?", the FeedbackQuestionId property should not change. However the logged FeedbackQuestionText property should change from "Is this helpful, Yes or No?" to "Was this helpful, Yes or No?".