Skip to main content

GetBehavior

Gets button widget behavior.

Syntax

expression.GetBehavior();

expression - A variable that represents a ApiButtonWidget class.

Parameters

This method doesn't have any parameters.

Returns

ButtonBehavior

Example

Get button widget behavior type and display it in a PDF document.

// How to get the behavior for a button widget in a PDF document?

// Get the behavior and display the result in a PDF document.

let doc = Api.GetDocument();
let page = doc.GetPage(0);
let buttonField = Api.CreateImageField([10, 10, 120, 100]);
page.AddObject(buttonField);

let widgets = buttonField.GetAllWidgets();
widgets[0].SetLayout('iconTextV');
widgets[0].SetBehavior('outline');
widgets[0].SetLabel('Behavior is: ' + widgets[0].GetBehavior());