Skip to main content
Tab

FlashObjectProperties.FlashVars Property

Gets or sets variables to pass to a SWF. Requires Macromedia Flash Player 6 or later.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v23.2.dll

NuGet Package: DevExpress.Web

Declaration

[DefaultValue("")]
public string FlashVars { get; set; }

Property Value

Type Default Description
String String.Empty

A string value that contains variables to pass to a SWF.

Remarks

The FlashVars property can be used to import root level variables to the movie. All variables are created before the first frame of the SWF is played. The format of the string is a set of name=value combinations separated by ‘&’. Special and/or non-printable characters can be escaped with a ‘%’ followed by a 2 digit hexadecimal value. A single blank space can be represented using the ‘+’ sign.

All browsers will support string sizes of up to 64KB (65535 bytes) in length. FlashVars must be assigned in both the OBJECT and EMBED tags in order to work on all browsers.

See Also