VintaSoft Imaging .NET SDK 14.0: Документация для .NET разработчика
Vintasoft.Imaging.UI Namespace / ThumbnailCaption Class
Члены типа Объект Синтаксис Example Иерархия Требования Смотрите также
В этом разделе
    Класс ThumbnailCaption
    В этом разделе
    Задает заголовок миниатюры.
    Объектная модель
    PaddingF ThumbnailCaption
    Синтаксис
    'Declaration
    
    Public Class ThumbnailCaption
    
    
    public class ThumbnailCaption
    
    
    public __gc class ThumbnailCaption
    
    
    public ref class ThumbnailCaption
    
    
    Пример

    Вот C#/VB.NET код, который демонстрирует, как задать заголовок миниатюры:

    
    ''' <summary>
    ''' Sets the custom thumbnail caption.
    ''' </summary>
    ''' <param name="thumbnailViewer">The thumbnail viewer.</param>
    Public Shared Sub SetThumbnailCaption(thumbnailViewer As Vintasoft.Imaging.UI.ThumbnailViewer)
        thumbnailViewer.ThumbnailCaption.CaptionFormat = "File {Filename}, page {PageNumber}"
        thumbnailViewer.ThumbnailCaption.IsVisible = True
    End Sub
    
    
    
    /// <summary>
    /// Sets the custom thumbnail caption.
    /// </summary>
    /// <param name="thumbnailViewer">The thumbnail viewer.</param>
    public static void SetThumbnailCaption(Vintasoft.Imaging.UI.ThumbnailViewer thumbnailViewer)
    {
        thumbnailViewer.ThumbnailCaption.CaptionFormat = "File {Filename}, page {PageNumber}";
        thumbnailViewer.ThumbnailCaption.IsVisible = true;
    }
    
    

    Иерархия наследования

    System.Object
       Vintasoft.Imaging.UI.ThumbnailCaption

    Требования

    Целевые платформы: .NET 8; .NET 7; .NET 6; .NET Framework 4.8, 4.7, 4.6, 4.5, 4.0, 3.5

    Смотрите также