ImageEditPropertiesBase.ExportImageSettings Property
Provides access to settings that are applied to an exported binary image.
Namespace: DevExpress.Web
Assembly: DevExpress.Web.v24.1.dll
NuGet Package: DevExpress.Web
Declaration
Property Value
Type | Description |
---|---|
ExportBinaryImageSettings | A ExportBinaryImageSettings object that contains binary image settings. |
Example
<dx:ASPxGridView ID="grid" runat="server" DataSourceID="MasterDataSource" Width="100%" AutoGenerateColumns="False" KeyFieldName="CategoryID">
<Columns>
<dx:GridViewDataTextColumn FieldName="CategoryID" />
<dx:GridViewDataTextColumn FieldName="CategoryName" />
<dx:GridViewDataTextColumn FieldName="Description" />
<dx:GridViewDataBinaryImageColumn FieldName="Picture">
<PropertiesBinaryImage ImageWidth="120" ImageHeight="80">
<ExportImageSettings Width="90" Height="60" SizeMode="AutoSize"/>
</PropertiesBinaryImage>
</dx:GridViewDataBinaryImageColumn>
</Columns>
...
</dx:ASPxGridView>
See Also