FarPoint.Win
Style Property
See Also  Example
FarPoint.Win Assembly > FarPoint.Win Namespace > Picture Class : Style Property


Gets or sets how the picture is displayed.

Syntax

Visual Basic (Declaration) 
Public Overridable Property Style As RenderStyle
Visual Basic (Usage)Copy Code
Dim instance As Picture
Dim value As RenderStyle
 
instance.Style = value
 
value = instance.Style
C# 
public virtual RenderStyle Style {get; set;}

Return Value

RenderStyle setting that determines the style of rendering

Example

This example draws a picture in the top left of the dialog.
C#Copy Code
private void DrawPicture(System.Windows.Forms.PaintEventArgs e)
{
Graphics g = e.Graphics;
FarPoint.Win.Picture p =
new FarPoint.Win.Picture(Image.FromFile("d:\\earth.ico"), RenderStyle.Normal, Color.White, 50, HorizontalAlignment.Center, VerticalAlignment.Center);
g.DrawImage(p.Image, 20, 20);
FarPoint.Win.RenderStyle s = p.Style;
MessageBox.Show(
"The style is " + s.ToString());
}
Visual BasicCopy Code
Private Sub DrawPicture(ByVal e As PaintEventArgs)
Dim g As Graphics = e.Graphics
Dim p As New FarPoint.Win.Picture(Image.FromFile("d:\earth.ico"), RenderStyle.Normal, Color.White, 50, HorizontalAlignment.Center, VerticalAlignment.Center)
g.DrawImage(p.Image, 20, 20)
Dim s As FarPoint.Win.RenderStyle = p.Style
MessageBox.Show("The style is " + s.ToString())
End Sub

Remarks

Pictures can be displayed in their original dimensions, or they can be stretched or scaled to fit an area. If they are scaled, they can maintain their proportions, if you prefer. Alternatively, pictures can be tiled.

Specify the picture to display be setting the Image property.

See Also