Movie.BaseMovieHeight

From Xojo Documentation

Read-Only Property (As Integer )
IntegerValue = aMovie.BaseMovieHeight

Supported for all project types and targets.

The actual height of the movie in pixels.

Example

This example displays the BaseMovieHeight and BaseMovieWidth.

Var f As FolderItem
Var m As Movie
f = FolderItem.ShowOpenFileDialog("")
m = movie.open(f)
MoviePlayer1.Border = True
MoviePlayer1.Movie = m
MoviePlayer1.Controller = 2
TextField2.Value = m.BaseMovieHeight.ToString
TextField3.Value = m.BaseMovieWidth.ToString