Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Gets or sets the explicit width, in pixels, that can be used to allow a Web browser to scale the image.
Namespace: Microsoft.SharePoint.Publishing.Fields
Assembly: Microsoft.SharePoint.Publishing (in Microsoft.SharePoint.Publishing.dll)
Syntax
'Declaration
Public Property Width As Integer
Get
Set
'Usage
Dim instance As ImageFieldValue
Dim value As Integer
value = instance.Width
instance.Width = value
public int Width { get; set; }
Property Value
Type: System.Int32
The explicit width in pixels used to allow a Web browser to scale the image. Default is 0.
Remarks
If this value is greater than 0, a width attribute is added to the <IMG> tag that is output. If it is set to 0 or less, no width attribute is used and the image retains its default width.
Examples
// You can change any of the following data that are set into the ImageFieldValue
private const string NewImageUrl = "/SiteCollectionImages/SampleImage.jpg";
private const string NewHyperlink = "/Pages/SamplePage.aspx";
private const bool NewOpenHyperlinkInNewWindow = true;
private const string NewAlignment = "right";
private const string NewAlternateText = "Sample alternate text for the image";
private const int NewBorderWidth = 4;
private const int NewHeight = 100;
private const int NewWidth = 150;
private const int NewHorizontalSpacing = 10;
private const int NewVerticalSpacing = 15
Note
This example is part of the larger ImageFieldValue sample in the ImageFieldValue topic.