Table of Contents

Class MeldFensterRequest

Namespace
BpNexT.NET.Models
Assembly
BpNexT.NET.dll

Represents a Modal

public sealed class MeldFensterRequest
Inheritance
object
MeldFensterRequest

Constructors

MeldFensterRequest(string, object)

public MeldFensterRequest(string text, object buttonsVariant)

Parameters

text string
buttonsVariant object

Properties

Buttons

The available buttons of the modal

public IReadOnlyList<MeldFensterButton> Buttons { get; }

Property Value

IReadOnlyList<MeldFensterButton>

DefaultResult

The default selected button (if any)

public int DefaultResult { get; }

Property Value

int

Text

The text of the modal

public string Text { get; }

Property Value

string

Methods

FindByCaption(string)

Returns a button by it's caption

public MeldFensterButton? FindByCaption(string caption)

Parameters

caption string

Returns

MeldFensterButton