Files
PowerToys/src/modules/powerrename/PowerRenameUILib/ExplorerItem.idl

18 lines
530 B
Plaintext
Raw Normal View History

namespace PowerRenameUILib
{
runtimeclass ExplorerItem : Windows.UI.Xaml.Data.INotifyPropertyChanged
{
ExplorerItem();
ExplorerItem(Int32 id, String original, String renamed, Int32 type, UInt32 depth, Boolean checked);
Int32 Id { get; };
String IdStr { get; };
String Original;
String Renamed;
Double Indentation { get; };
String ImagePath { get; };
Int32 Type;
Boolean Checked;
Windows.UI.Xaml.Visibility Highlight { get; };
}
}