ImageFieldValue.VerticalSpacing Property
Gets or sets the vertical spacing, in pixels, on the top and bottom of the image.
Assembly: Microsoft.SharePoint.Publishing (in Microsoft.SharePoint.Publishing.dll)
Property Value
Type: System.Int32The vertical spacing on the top and bottom of the image, in pixels. Default is 0.
The value of this property is the vspace attribute of the <IMG> tag in the output of the ToString method.
// 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. |
Note