Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

DXPopupOptionSheet.DialogResult Property

Gets the dialog result.

Namespace: DevExpress.Maui.Controls

Assembly: DevExpress.Maui.Controls.dll

NuGet Package: DevExpress.Maui.Controls

#Declaration

C#
public string[] DialogResult { get; }

#Property Value

Type Description
String[]

The dialog result.

#Remarks

The dialog result of the DXPopupOptionSheet can contain one of the following values:

  • The array of selected options, if a user taps the OK button to close the pop-up option sheet.
  • The array that contains the Cancel button caption when a user taps the Cancel button to close the pop-up option sheet.
  • Null if the pop-up option sheet closes when a user taps the scrim.
  • The parameter passed to the Close(String[]) method.
See Also