mirror of
https://github.com/soukoku/ntwain.git
synced 2025-04-05 20:59:23 +08:00
Updated broken ref in xml doc.
This commit is contained in:
parent
ade7c32888
commit
fb427437d7
@ -88,7 +88,7 @@ namespace NTwain
|
||||
public ItemType ItemType { get; private set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets the one value if container is <see cref="NTwain.ContainerType.Array"/>.
|
||||
/// Gets the one value if container is <see cref="NTwain.Data.ContainerType.Array"/>.
|
||||
/// </summary>
|
||||
/// <value>
|
||||
/// The one value.
|
||||
@ -96,7 +96,7 @@ namespace NTwain
|
||||
public object OneValue { get; private set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets the collection values if container is <see cref="NTwain.ContainerType.Enum"/> or <see cref="NTwain.ContainerType.Range"/> .
|
||||
/// Gets the collection values if container is <see cref="NTwain.Data.ContainerType.Enum"/> or <see cref="NTwain.Data.ContainerType.Range"/> .
|
||||
/// </summary>
|
||||
/// <value>
|
||||
/// The collection values.
|
||||
@ -108,11 +108,11 @@ namespace NTwain
|
||||
#region enum prop
|
||||
|
||||
/// <summary>
|
||||
/// Gets the current value index if container is <see cref="NTwain.ContainerType.Enum"/>.
|
||||
/// Gets the current value index if container is <see cref="NTwain.Data.ContainerType.Enum"/>.
|
||||
/// </summary>
|
||||
public int EnumCurrentIndex { get; private set; }
|
||||
/// <summary>
|
||||
/// Gets the default value index if container is <see cref="NTwain.ContainerType.Enum" />.
|
||||
/// Gets the default value index if container is <see cref="NTwain.Data.ContainerType.Enum" />.
|
||||
/// </summary>
|
||||
public int EnumDefaultIndex { get; private set; }
|
||||
|
||||
@ -121,14 +121,14 @@ namespace NTwain
|
||||
#region range prop
|
||||
|
||||
/// <summary>
|
||||
/// Gets the current value if container is <see cref="NTwain.ContainerType.Range" />.
|
||||
/// Gets the current value if container is <see cref="NTwain.Data.ContainerType.Range" />.
|
||||
/// </summary>
|
||||
/// <value>
|
||||
/// The range current value.
|
||||
/// </value>
|
||||
public object RangeCurrentValue { get; private set; }
|
||||
/// <summary>
|
||||
/// Gets the default value if container is <see cref="NTwain.ContainerType.Range" />.
|
||||
/// Gets the default value if container is <see cref="NTwain.Data.ContainerType.Range" />.
|
||||
/// </summary>
|
||||
/// <value>
|
||||
/// The range default value.
|
||||
|
@ -1440,8 +1440,8 @@ namespace NTwain.Data
|
||||
public FileType FileType { get { return (FileType)_fileType; } set { _fileType = (int)value; } }
|
||||
|
||||
/// <summary>
|
||||
/// If <see cref="NTwain.Values.FileType.Directory"/>, total size of media in bytes.
|
||||
/// If <see cref="NTwain.Values.FileType.Image"/>, size of image in bytes.
|
||||
/// If <see cref="NTwain.Data.FileType.Directory"/>, total size of media in bytes.
|
||||
/// If <see cref="NTwain.Data.FileType.Image"/>, size of image in bytes.
|
||||
/// </summary>
|
||||
/// <value>
|
||||
/// The size.
|
||||
@ -1470,14 +1470,14 @@ namespace NTwain.Data
|
||||
/// </summary>
|
||||
public int NewImageSize { get { return _newImageSize; } set { _newImageSize = value; } }
|
||||
/// <summary>
|
||||
/// If applicable, return the number of <see cref="NTwain.Values.FileType.Image"/> files on the file system including those in all sub-directories.
|
||||
/// If applicable, return the number of <see cref="NTwain.Data.FileType.Image"/> files on the file system including those in all sub-directories.
|
||||
/// </summary>
|
||||
/// <value>
|
||||
/// The number of files.
|
||||
/// </value>
|
||||
public uint NumberOfFiles { get { return _numberOfFiles; } set { _numberOfFiles = value; } }
|
||||
/// <summary>
|
||||
/// The number of audio snippets associated with a file of type <see cref="NTwain.Values.FileType.Image"/>.
|
||||
/// The number of audio snippets associated with a file of type <see cref="NTwain.Data.FileType.Image"/>.
|
||||
/// </summary>
|
||||
/// <value>
|
||||
/// The number of snippets.
|
||||
|
Loading…
Reference in New Issue
Block a user