This topic has not yet been rated - Rate this topic

ImageFieldValue.Alignment Property

Gets or sets the alignment of the Image object in relation to other elements on the Web page.

Namespace:  Microsoft.SharePoint.Publishing.Fields
Assembly:  Microsoft.SharePoint.Publishing (in Microsoft.SharePoint.Publishing.dll)
public string Alignment { get; set; }

Property Value

Type: System.String
The alignment of the Image in relation to other elements on the Web page.
Default is an empty string.

The value of this property is the align attribute in the <IMG> tag in the ToString method output.

Valid values for alignment include right, left, top, and bottom.

// 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;
NoteNote

This example is part of the larger ImageFieldValue sample in the ImageFieldValue topic.

Did you find this helpful?
(1500 characters remaining)
Community Content Add
Annotations FAQ